import Icon from '../js/shared/components/icon' export const Type = args => { return ( <>
Font Awesome icons
) } Type.args = { type: 'tasks', } export const Spinner = args => { return } Spinner.args = { type: 'spinner', spin: true, } export const FixedWidth = args => { return } FixedWidth.args = { type: 'tasks', fw: true, } export const AccessibilityLabel = args => { return } AccessibilityLabel.args = { type: 'check', accessibilityLabel: 'Check', } export default { title: 'Shared / Components / Icon', component: Icon, }