uptime-kuma/src/icon.js

102 lines
1.7 KiB
JavaScript
Raw Normal View History

import { library } from "@fortawesome/fontawesome-svg-core";
2021-09-14 23:27:11 +08:00
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
2021-09-15 14:34:30 +08:00
// Add Free Font Awesome Icons
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
2023-02-25 16:19:48 +08:00
// In order to add an icon, you have to:
// 1) add the icon name in the import statement below;
// 2) add the icon name to the library.add() statement below.
import {
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-09 02:10:32 +08:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 14:34:30 +08:00
faTimesCircle,
faTrash,
2021-09-14 23:27:11 +08:00
faCheckCircle,
faStream,
faSave,
2021-09-15 14:34:30 +08:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 14:37:57 +08:00
faUnlink,
2021-09-16 22:48:28 +08:00
faQuestionCircle,
2021-10-01 00:09:43 +08:00
faImages,
faUpload,
faCopy,
faCheck,
2021-10-01 22:29:22 +08:00
faFile,
faAward,
2021-10-01 18:44:32 +08:00
faLink,
2021-12-19 13:30:53 +08:00
faChevronDown,
faSignOutAlt,
2022-03-10 21:34:30 +08:00
faPen,
faExternalLinkSquareAlt,
faSpinner,
2022-04-06 22:43:22 +08:00
faUndo,
2022-04-10 00:25:27 +08:00
faPlusCircle,
2022-04-19 00:39:49 +08:00
faAngleDown,
faWrench,
2022-04-30 14:33:54 +02:00
faHeartbeat,
2022-05-08 20:03:24 +02:00
faFilter,
2023-01-16 12:39:24 +08:00
faInfoCircle,
2023-02-25 16:19:48 +08:00
faClone,
} from "@fortawesome/free-solid-svg-icons";
2021-07-27 16:52:44 +08:00
library.add(
faArrowAltCircleUp,
faCog,
faEdit,
faEye,
faEyeSlash,
faList,
faPause,
faPlay,
faPlus,
2021-09-09 02:10:32 +08:00
faSearch,
faTachometerAlt,
faTimes,
2021-09-15 14:34:30 +08:00
faTimesCircle,
faTrash,
2021-09-14 23:27:11 +08:00
faCheckCircle,
faStream,
faSave,
2021-09-15 14:34:30 +08:00
faExclamationCircle,
faBullhorn,
faArrowsAltV,
2021-09-16 14:37:57 +08:00
faUnlink,
2021-09-16 22:48:28 +08:00
faQuestionCircle,
faImages,
faUpload,
2021-10-01 00:09:43 +08:00
faCopy,
faCheck,
2021-10-01 22:29:22 +08:00
faFile,
faAward,
2021-10-01 18:44:32 +08:00
faLink,
2021-12-19 13:30:53 +08:00
faChevronDown,
faSignOutAlt,
2022-03-10 21:34:30 +08:00
faPen,
faExternalLinkSquareAlt,
faSpinner,
2022-04-06 22:43:22 +08:00
faUndo,
2022-04-10 00:25:27 +08:00
faPlusCircle,
2022-04-19 00:39:49 +08:00
faAngleDown,
faLink,
faWrench,
2022-04-30 14:33:54 +02:00
faHeartbeat,
2022-05-08 20:03:24 +02:00
faFilter,
2023-01-16 12:39:24 +08:00
faInfoCircle,
2023-02-25 16:19:48 +08:00
faClone,
);
export { FontAwesomeIcon };
2021-07-27 16:52:44 +08:00