wc-fontawesome-free
Version:
Font Awesome Free icons as Web Components
13 lines (9 loc) • 380 B
JavaScript
import { createIconClass } from '../lib/create-icon-class.js'
import {
faHandScissors as iconDef
} from '../../../node_modules/@fortawesome/free-regular-svg-icons/index.es.js'
const prefix = 'far'
const iconName = 'hand-scissors'
const iconClass = createIconClass(prefix, iconName, iconDef)
customElements.define('far-hand-scissors-icon', iconClass)
export default iconClass