diff options
Diffstat (limited to 'src/icon.js')
-rw-r--r-- | src/icon.js | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/src/icon.js b/src/icon.js new file mode 100644 index 0000000..7bdfe1c --- /dev/null +++ b/src/icon.js @@ -0,0 +1,103 @@ +import { library } from "@fortawesome/fontawesome-svg-core"; +import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; + +// Add Free Font Awesome Icons +// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free +// In order to add an icon, you have to: +// 1) add the icon name in the import statement below; +// 2) add the icon name to the library.add() statement below. +import { + faArrowAltCircleUp, + faCog, + faEdit, + faEye, + faEyeSlash, + faList, + faPause, + faPlay, + faPlus, + faSearch, + faTachometerAlt, + faTimes, + faTimesCircle, + faTrash, + faCheckCircle, + faStream, + faSave, + faExclamationCircle, + faBullhorn, + faArrowsAltV, + faUnlink, + faQuestionCircle, + faImages, + faUpload, + faCopy, + faCheck, + faFile, + faAward, + faLink, + faChevronDown, + faSignOutAlt, + faPen, + faExternalLinkSquareAlt, + faSpinner, + faUndo, + faPlusCircle, + faAngleDown, + faWrench, + faHeartbeat, + faFilter, + faInfoCircle, + faClone, + faCertificate, +} from "@fortawesome/free-solid-svg-icons"; + +library.add( + faArrowAltCircleUp, + faCog, + faEdit, + faEye, + faEyeSlash, + faList, + faPause, + faPlay, + faPlus, + faSearch, + faTachometerAlt, + faTimes, + faTimesCircle, + faTrash, + faCheckCircle, + faStream, + faSave, + faExclamationCircle, + faBullhorn, + faArrowsAltV, + faUnlink, + faQuestionCircle, + faImages, + faUpload, + faCopy, + faCheck, + faFile, + faAward, + faLink, + faChevronDown, + faSignOutAlt, + faPen, + faExternalLinkSquareAlt, + faSpinner, + faUndo, + faPlusCircle, + faAngleDown, + faLink, + faWrench, + faHeartbeat, + faFilter, + faInfoCircle, + faClone, + faCertificate, +); + +export { FontAwesomeIcon }; + |