2021-08-26 06:55:19 -04:00
|
|
|
import { library } from "@fortawesome/fontawesome-svg-core";
|
|
|
|
import {
|
|
|
|
faArrowAltCircleUp,
|
|
|
|
faCog,
|
|
|
|
faEdit,
|
|
|
|
faEye,
|
|
|
|
faEyeSlash,
|
|
|
|
faList,
|
|
|
|
faPause,
|
|
|
|
faPlay,
|
|
|
|
faPlus,
|
|
|
|
faTachometerAlt,
|
|
|
|
faTimes,
|
|
|
|
faTrash
|
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
2021-07-27 04:52:44 -04:00
|
|
|
//import { fa } from '@fortawesome/free-regular-svg-icons'
|
2021-08-26 06:55:19 -04:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
2021-07-27 04:52:44 -04:00
|
|
|
|
|
|
|
// Add Free Font Awesome Icons here
|
|
|
|
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
|
2021-08-26 06:55:19 -04:00
|
|
|
library.add(
|
|
|
|
faArrowAltCircleUp,
|
|
|
|
faCog,
|
|
|
|
faEdit,
|
|
|
|
faEye,
|
|
|
|
faEyeSlash,
|
|
|
|
faList,
|
|
|
|
faPause,
|
|
|
|
faPlay,
|
|
|
|
faPlus,
|
|
|
|
faTachometerAlt,
|
|
|
|
faTimes,
|
|
|
|
faTrash,
|
|
|
|
);
|
|
|
|
|
|
|
|
export { FontAwesomeIcon };
|
2021-07-27 04:52:44 -04:00
|
|
|
|