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
|
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-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-08-26 12:55:19 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
export { FontAwesomeIcon };
|
2021-07-27 10:52:44 +02:00
|
|
|
|