diff options
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 () { |
