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