2021-08-26 06:55:19 -04:00
|
|
|
import { library } from "@fortawesome/fontawesome-svg-core";
|
2021-09-14 11:27:11 -04:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
2021-09-15 02:34:30 -04:00
|
|
|
|
|
|
|
// Add Free Font Awesome Icons
|
|
|
|
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
|
2023-02-25 03:19:48 -05:00
|
|
|
// In order to add an icon, you have to:
|
|
|
|
// 1) add the icon name in the import statement below;
|
|
|
|
// 2) add the icon name to the library.add() statement below.
|
2021-08-26 06:55:19 -04:00
|
|
|
import {
|
|
|
|
faArrowAltCircleUp,
|
|
|
|
faCog,
|
|
|
|
faEdit,
|
|
|
|
faEye,
|
|
|
|
faEyeSlash,
|
|
|
|
faList,
|
|
|
|
faPause,
|
|
|
|
faPlay,
|
|
|
|
faPlus,
|
2021-09-08 14:10:32 -04:00
|
|
|
faSearch,
|
2021-08-26 06:55:19 -04:00
|
|
|
faTachometerAlt,
|
|
|
|
faTimes,
|
2021-09-15 02:34:30 -04:00
|
|
|
faTimesCircle,
|
2021-09-14 03:05:04 -04:00
|
|
|
faTrash,
|
2021-09-14 11:27:11 -04:00
|
|
|
faCheckCircle,
|
|
|
|
faStream,
|
|
|
|
faSave,
|
2021-09-15 02:34:30 -04:00
|
|
|
faExclamationCircle,
|
|
|
|
faBullhorn,
|
|
|
|
faArrowsAltV,
|
2021-09-16 02:37:57 -04:00
|
|
|
faUnlink,
|
2021-09-16 10:48:28 -04:00
|
|
|
faQuestionCircle,
|
2021-09-30 12:09:43 -04:00
|
|
|
faImages,
|
|
|
|
faUpload,
|
|
|
|
faCopy,
|
|
|
|
faCheck,
|
2021-10-01 10:29:22 -04:00
|
|
|
faFile,
|
|
|
|
faAward,
|
2021-10-01 06:44:32 -04:00
|
|
|
faLink,
|
2021-12-19 00:30:53 -05:00
|
|
|
faChevronDown,
|
2022-01-27 13:57:14 -05:00
|
|
|
faSignOutAlt,
|
2022-03-10 08:34:30 -05:00
|
|
|
faPen,
|
|
|
|
faExternalLinkSquareAlt,
|
2022-03-17 07:07:05 -04:00
|
|
|
faSpinner,
|
2022-04-06 10:43:22 -04:00
|
|
|
faUndo,
|
2022-04-09 12:25:27 -04:00
|
|
|
faPlusCircle,
|
2022-04-18 12:39:49 -04:00
|
|
|
faAngleDown,
|
2022-01-23 09:22:00 -05:00
|
|
|
faWrench,
|
2022-04-30 08:33:54 -04:00
|
|
|
faHeartbeat,
|
2022-05-08 14:03:24 -04:00
|
|
|
faFilter,
|
2023-01-15 23:39:24 -05:00
|
|
|
faInfoCircle,
|
2023-02-25 03:19:48 -05:00
|
|
|
faClone,
|
2023-03-10 10:04:47 -05:00
|
|
|
faCertificate,
|
2021-08-26 06:55:19 -04:00
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
2021-07-27 04:52:44 -04:00
|
|
|
|
2021-08-26 06:55:19 -04:00
|
|
|
library.add(
|
|
|
|
faArrowAltCircleUp,
|
|
|
|
faCog,
|
|
|
|
faEdit,
|
|
|
|
faEye,
|
|
|
|
faEyeSlash,
|
|
|
|
faList,
|
|
|
|
faPause,
|
|
|
|
faPlay,
|
|
|
|
faPlus,
|
2021-09-08 14:10:32 -04:00
|
|
|
faSearch,
|
2021-08-26 06:55:19 -04:00
|
|
|
faTachometerAlt,
|
|
|
|
faTimes,
|
2021-09-15 02:34:30 -04:00
|
|
|
faTimesCircle,
|
2021-08-26 06:55:19 -04:00
|
|
|
faTrash,
|
2021-09-14 11:27:11 -04:00
|
|
|
faCheckCircle,
|
|
|
|
faStream,
|
|
|
|
faSave,
|
2021-09-15 02:34:30 -04:00
|
|
|
faExclamationCircle,
|
|
|
|
faBullhorn,
|
|
|
|
faArrowsAltV,
|
2021-09-16 02:37:57 -04:00
|
|
|
faUnlink,
|
2021-09-16 10:48:28 -04:00
|
|
|
faQuestionCircle,
|
2021-09-21 09:22:35 -04:00
|
|
|
faImages,
|
|
|
|
faUpload,
|
2021-09-30 12:09:43 -04:00
|
|
|
faCopy,
|
|
|
|
faCheck,
|
2021-10-01 10:29:22 -04:00
|
|
|
faFile,
|
|
|
|
faAward,
|
2021-10-01 06:44:32 -04:00
|
|
|
faLink,
|
2021-12-19 00:30:53 -05:00
|
|
|
faChevronDown,
|
2022-01-27 13:57:14 -05:00
|
|
|
faSignOutAlt,
|
2022-03-10 08:34:30 -05:00
|
|
|
faPen,
|
|
|
|
faExternalLinkSquareAlt,
|
2022-03-17 07:07:05 -04:00
|
|
|
faSpinner,
|
2022-04-06 10:43:22 -04:00
|
|
|
faUndo,
|
2022-04-09 12:25:27 -04:00
|
|
|
faPlusCircle,
|
2022-04-18 12:39:49 -04:00
|
|
|
faAngleDown,
|
2022-06-11 12:23:12 -04:00
|
|
|
faLink,
|
2022-01-23 09:22:00 -05:00
|
|
|
faWrench,
|
2022-04-30 08:33:54 -04:00
|
|
|
faHeartbeat,
|
2022-05-08 14:03:24 -04:00
|
|
|
faFilter,
|
2023-01-15 23:39:24 -05:00
|
|
|
faInfoCircle,
|
2023-02-25 03:19:48 -05:00
|
|
|
faClone,
|
2023-03-10 10:04:47 -05:00
|
|
|
faCertificate,
|
2021-08-26 06:55:19 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
export { FontAwesomeIcon };
|
2021-07-27 04:52:44 -04:00
|
|
|
|