uptime-kuma/src/icon.js

72 lines
1.2 KiB
JavaScript
Raw Normal View History

import { library } from "@fortawesome/fontawesome-svg-core";
2021-09-14 11:27:11 -04:00
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
2021-09-15 02:34:30 -04:00
// Add Free Font Awesome Icons
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
import {
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-08 14:10:32 -04:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 02:34:30 -04:00
faTimesCircle,
faTrash,
2021-09-14 11:27:11 -04:00
faCheckCircle,
faStream,
faSave,
2021-09-15 02:34:30 -04:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 02:37:57 -04:00
faUnlink,
2021-09-16 10:48:28 -04:00
faQuestionCircle,
2021-09-30 12:09:43 -04:00
faImages,
faUpload,
faCopy,
faCheck,
2021-10-01 10:29:22 -04:00
faFile,
faAward,
2021-10-01 06:44:32 -04:00
faLink,
} from "@fortawesome/free-solid-svg-icons";
2021-07-27 04:52:44 -04:00
library.add(
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-08 14:10:32 -04:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 02:34:30 -04:00
faTimesCircle,
faTrash,
2021-09-14 11:27:11 -04:00
faCheckCircle,
faStream,
faSave,
2021-09-15 02:34:30 -04:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 02:37:57 -04:00
faUnlink,
2021-09-16 10:48:28 -04:00
faQuestionCircle,
faImages,
faUpload,
2021-09-30 12:09:43 -04:00
faCopy,
faCheck,
2021-10-01 10:29:22 -04:00
faFile,
faAward,
2021-10-01 06:44:32 -04:00
faLink,
);
export { FontAwesomeIcon };
2021-07-27 04:52:44 -04:00