1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-26 22:56:52 +02:00
uptime-kuma/src/icon.js

42 lines
870 B
JavaScript
Raw Normal View History

import { library } from "@fortawesome/fontawesome-svg-core";
import {
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-08 20:10:32 +02:00
faSearch,
faTachometerAlt,
faTimes,
faTrash,
faCheckCircle, faStream, faSave, faExclamationCircle
} from "@fortawesome/free-solid-svg-icons";
2021-07-27 10:52:44 +02:00
//import { fa } from '@fortawesome/free-regular-svg-icons'
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
2021-07-27 10:52:44 +02:00
// 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,
2021-09-08 20:10:32 +02:00
faSearch,
faTachometerAlt,
faTimes,
faTrash,
faCheckCircle, faStream, faSave, faExclamationCircle
);
export { FontAwesomeIcon };
2021-07-27 10:52:44 +02:00