This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
forked from kodadot/nft-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.ts
78 lines (69 loc) · 2.38 KB
/
icons.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import Vue from 'vue'
import {
faPaperPlane, faFileImage, faPlus,
faSync, faTimes,
faTrash, faCloudDownloadAlt, faKey,
faExternalLinkAlt, faUpload, faUsers,
faQuestionCircle, faMinus, faSearch,
faInfoCircle, faChevronDown, faChevronUp, faChevronLeft,
faHeart, faCaretDown, faCaretUp, faInfo,
faShareSquare, faCopy, faBookmark,
faLink, faLanguage,
faQuestion, faPrint,
faMagic, faEye, faCommentAlt,
faGhost, faCode, faLeaf,
faFlask, faCameraRetro, faTag,
faShareAlt, faShare, faExclamationTriangle,
faCalendar, faCalculator, faEnvelope,
faArrowsAlt, faCompressAlt, faCompressArrowsAlt,
faAngleLeft, faAngleRight, faReply,
faExternalLinkSquareAlt, faGift, faThLarge, faTh,
faEyeSlash, faArrowUp, faUser, faGlobe, faExclamationCircle, faFilter, faQrcode,
faFire, faMoneyBill
} from '@fortawesome/free-solid-svg-icons'
// throws error, idk why
import { faCommentDots, faThumbsUp, faThumbsDown } from '@fortawesome/free-regular-svg-icons'
import {
faTwitter, faLine, faTelegram,
faFacebook, faFacebookMessenger,
faTelegramPlane, faMedium, faWhatsapp,
faPinterest, faWpexplorer, faDiscord,
faRedditAlien,
faYoutube
} from '@fortawesome/free-brands-svg-icons'
import { library, IconDefinition } from '@fortawesome/fontawesome-svg-core'
library.add(
faPaperPlane, faFileImage, faPlus,
faSync, faTimes,
faCopy, faTrash, faCloudDownloadAlt,
faKey, faExternalLinkAlt, faUpload,
faUsers, faQuestionCircle, faMinus,
faSearch, faInfoCircle, faChevronDown,
faChevronUp, faChevronLeft, faHeart,
faCaretDown, faCaretUp, faInfo, faShareSquare,
faBookmark, faLink,
faLanguage, faQuestion, faEye,
faPrint, faCommentAlt, faMagic,
faLeaf, faFlask,
faCalendar, faEnvelope,
faCommentDots, faGhost, faCode,
faWpexplorer,
faRedditAlien, faCameraRetro,
faTag, faShareAlt, faShare,
faExclamationTriangle, faCalculator,
faArrowsAlt, faCompressAlt, faCompressArrowsAlt,
faEyeSlash, faArrowUp, faUser, faGlobe,
faExclamationCircle, faFilter, faQrcode, faGift, faThLarge, faTh,
faFire, faMoneyBill,
// Social
faTwitter, faTelegram, faFacebook,
faFacebookMessenger, faDiscord,
faLine, faTelegramPlane, faWhatsapp,
faPinterest, faMedium,
faAngleLeft, faAngleRight,
faReply, faThumbsUp, faThumbsDown,
faExternalLinkSquareAlt,
faYoutube
)
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
Vue.component('vue-fontawesome', FontAwesomeIcon)