Skip to content

Commit

Permalink
fix: missing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Jan 15, 2024
1 parent 8368c7e commit 0109f54
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/webapp/src/plugins/fontawsome.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { library } from '@fortawesome/fontawesome-svg-core';
import { faStar as farStar } from '@fortawesome/free-regular-svg-icons';
import { faSquare as farSquare, faStar as farStar } from '@fortawesome/free-regular-svg-icons';
import {
fa1,
fa2,
faArrowLeft,
faCaretDown,
faCheckSquare,
faCircleInfo,
faClockRotateLeft,
faCloud,
Expand All @@ -26,12 +27,13 @@ import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import type { App } from 'vue';

const register = (app: App): void => {
library.add(farStar);
library.add(farSquare, farStar);
library.add(
fa1,
fa2,
faArrowLeft,
faCaretDown,
faCheckSquare,
faCircleInfo,
faClockRotateLeft,
faCloud,
Expand Down

0 comments on commit 0109f54

Please sign in to comment.