diff options
| author | tusooa <tusooa@kazv.moe> | 2023-08-18 21:35:56 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-08-18 22:25:32 -0400 |
| commit | ebee2bda639988b3bfa29e0cfc9c6a76bfda5b07 (patch) | |
| tree | 52d226e0ee03a3cef25b1808353c24da152c2052 /src/components/extra_notifications/extra_notifications.js | |
| parent | a2c21e27428d44eac899c2497f599f9abfcb5cef (diff) | |
Add icons to extra notifications
Diffstat (limited to 'src/components/extra_notifications/extra_notifications.js')
| -rw-r--r-- | src/components/extra_notifications/extra_notifications.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/extra_notifications/extra_notifications.js b/src/components/extra_notifications/extra_notifications.js index 01df12a3..1bb0f837 100644 --- a/src/components/extra_notifications/extra_notifications.js +++ b/src/components/extra_notifications/extra_notifications.js @@ -1,5 +1,18 @@ import { mapGetters } from 'vuex' +import { library } from '@fortawesome/fontawesome-svg-core' +import { + faUserPlus, + faComments, + faBullhorn +} from '@fortawesome/free-solid-svg-icons' + +library.add( + faUserPlus, + faComments, + faBullhorn +) + const ExtraNotifications = { computed: { shouldShowChats () { |
