UNPKG

@navinc/base-react-components

Version:
23 lines (19 loc) 445 B
import { Helper } from './helper.js' import { listOfIcons } from './icons/index.js' export default { title: 'Form Elements/Helper', component: Helper, } export const Basic = (args) => <Helper {...args} /> Basic.argTypes = { iconName: { control: { type: 'select' }, options: listOfIcons, }, } Basic.args = { className: 'my-chevron', hasSpaceForErrors: false, helperText: 'my-chevron', iconName: 'actions/circle-faq', }