@altipla/fa5-icon
v0.0.2
Published
Vue 3 component to insert Font Awesome 5 icons.
Downloads
9
Readme
fa5-icon
Vue 3 component to insert Font Awesome 5 icons.
Install
npm i @altipla/fa5-icon
Usage
Declare the ac-icon
component in the main script of the app:
import { createApp } from 'vue'
import { Icon } from '@altipla/fa5-icon'
import './icons'
let app = createApp(...) // your initialization
app.component(Icon.name, Icon)
app.mount(...) // your initialization
Icons are declared in a different file to make it easier to add or remove icons from the available list. Declare any icon you need there:
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faTrash as faTrashSolid,
} from '@fortawesome/free-solid-svg-icons'
library.add(
faTrashSolid,
)
Finally use the component as needed inside your app:
<template>
<ac-icon solid>trash</ac-icon>
<ac-icon duotone spin>spinner-third</ac-icon>
</template>
<script>
export default {
}
</script>
Supported icons
There are multiple NPM libraries available from the @fortawesome
organization if you have the Pro version. All of them are supported in this package.
|NPM package|
|-----------|
|@fortawesome/free-solid-svg-icons
|
|@fortawesome/pro-solid-svg-icons
|
|@fortawesome/pro-regular-svg-icons
|
|@fortawesome/pro-light-svg-icons
|
|@fortawesome/pro-duotone-svg-icons
|
|@fortawesome/pro-brands-svg-icons
|