mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-11 08:04:17 -08:00
40 lines
755 B
JavaScript
40 lines
755 B
JavaScript
import { library } from "@fortawesome/fontawesome-svg-core";
|
|
import {
|
|
faArrowAltCircleUp,
|
|
faCog,
|
|
faEdit,
|
|
faEye,
|
|
faEyeSlash,
|
|
faList,
|
|
faPause,
|
|
faPlay,
|
|
faPlus,
|
|
faSearch,
|
|
faTachometerAlt,
|
|
faTimes,
|
|
faTrash
|
|
} from "@fortawesome/free-solid-svg-icons";
|
|
//import { fa } from '@fortawesome/free-regular-svg-icons'
|
|
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
|
|
|
// Add Free Font Awesome Icons here
|
|
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
|
|
library.add(
|
|
faArrowAltCircleUp,
|
|
faCog,
|
|
faEdit,
|
|
faEye,
|
|
faEyeSlash,
|
|
faList,
|
|
faPause,
|
|
faPlay,
|
|
faPlus,
|
|
faSearch,
|
|
faTachometerAlt,
|
|
faTimes,
|
|
faTrash,
|
|
);
|
|
|
|
export { FontAwesomeIcon };
|
|
|