2FAuth/resources/js/packages/fontawesome.js

55 lines
920 B
JavaScript
Raw Normal View History

2020-01-15 23:00:06 +01:00
import Vue from 'vue'
import { library } from '@fortawesome/fontawesome-svg-core'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import {
faPlus,
2020-10-25 23:59:03 +01:00
faPlusCircle,
2020-01-15 23:00:06 +01:00
faQrcode,
faImage,
faTrash,
faEdit,
faCheck,
faLock,
faLockOpen,
faSearch,
faEllipsisH,
2020-04-24 00:43:41 +02:00
faBars,
2020-10-22 17:05:55 +02:00
faSpinner,
2020-10-25 23:59:03 +01:00
faCaretDown,
faLayerGroup,
faMinusCircle,
faExclamationCircle,
faTh,
faList,
2020-01-15 23:00:06 +01:00
} from '@fortawesome/free-solid-svg-icons'
2020-10-03 19:30:52 +02:00
import {
faGithubAlt
} from '@fortawesome/free-brands-svg-icons'
2020-01-15 23:00:06 +01:00
library.add(
faPlus,
2020-10-25 23:59:03 +01:00
faPlusCircle,
2020-01-15 23:00:06 +01:00
faQrcode,
faImage,
faTrash,
faEdit,
faCheck,
faLock,
faLockOpen,
faSearch,
faEllipsisH,
2020-04-24 00:43:41 +02:00
faBars,
2020-10-03 19:30:52 +02:00
faSpinner,
2020-10-22 17:05:55 +02:00
faGithubAlt,
2020-10-25 23:59:03 +01:00
faCaretDown,
faLayerGroup,
faMinusCircle,
faExclamationCircle,
faTh,
faList,
2020-01-15 23:00:06 +01:00
);
Vue.component('font-awesome-icon', FontAwesomeIcon)