advent22/ui/src/lib/fontawesome.ts

15 lines
431 B
TypeScript
Raw Normal View History

/* import font awesome icon component */
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
2023-01-20 00:41:15 +00:00
/* import the fontawesome core */
2023-09-07 01:17:14 +00:00
import { library } from "@fortawesome/fontawesome-svg-core";
2023-01-20 00:41:15 +00:00
/* import specific icons */
2024-08-23 16:37:32 +00:00
// import { fab } from "@fortawesome/free-brands-svg-icons";
2023-09-07 01:17:14 +00:00
import { fas } from "@fortawesome/free-solid-svg-icons";
2023-01-20 00:41:15 +00:00
/* add icons to the library */
2024-08-23 16:37:32 +00:00
library.add(fas);
2023-01-20 00:41:15 +00:00
export default FontAwesomeIcon;