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