uptime-kuma/src/icon.js

78 lines
1.3 KiB
JavaScript
Raw Normal View History

import { library } from "@fortawesome/fontawesome-svg-core";
2021-09-14 15:27:11 +00:00
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
2021-09-15 06:34:30 +00: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 18:10:32 +00:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 06:34:30 +00:00
faTimesCircle,
faTrash,
2021-09-14 15:27:11 +00:00
faCheckCircle,
faStream,
faSave,
2021-09-15 06:34:30 +00:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 06:37:57 +00:00
faUnlink,
2021-09-16 14:48:28 +00:00
faQuestionCircle,
2021-09-30 16:09:43 +00:00
faImages,
faUpload,
faCopy,
faCheck,
2021-10-01 14:29:22 +00:00
faFile,
faAward,
2021-10-01 10:44:32 +00:00
faLink,
2021-12-19 05:30:53 +00:00
faChevronDown,
2022-03-10 13:34:30 +00:00
faPen,
faExternalLinkSquareAlt,
} from "@fortawesome/free-solid-svg-icons";
2021-07-27 08:52:44 +00:00
library.add(
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-08 18:10:32 +00:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 06:34:30 +00:00
faTimesCircle,
faTrash,
2021-09-14 15:27:11 +00:00
faCheckCircle,
faStream,
faSave,
2021-09-15 06:34:30 +00:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 06:37:57 +00:00
faUnlink,
2021-09-16 14:48:28 +00:00
faQuestionCircle,
faImages,
faUpload,
2021-09-30 16:09:43 +00:00
faCopy,
faCheck,
2021-10-01 14:29:22 +00:00
faFile,
faAward,
2021-10-01 10:44:32 +00:00
faLink,
2021-12-19 05:30:53 +00:00
faChevronDown,
2022-03-10 13:34:30 +00:00
faPen,
faExternalLinkSquareAlt,
);
export { FontAwesomeIcon };
2021-07-27 08:52:44 +00:00