import { ComponentMeta, ComponentStory } from '@storybook/react'; import LabelComponent from './label'; /** * Label - Storybook Meta */ export default { title: 'Atoms/Forms', component: LabelComponent, args: { required: false, size: 'small', }, argTypes: { className: { control: { type: 'text', }, description: 'Add classnames to the label.', table: { category: 'Styles', }, type: { name: 'string', required: false, }, }, children: { control: { type: 'text', }, description: 'The label body.', type: { name: 'string', required: true, }, }, htmlFor: { control: { type: 'text', }, description: 'The field id.', type: { name: 'string', required: true, }, }, required: { control: { type: 'boolean', }, description: 'Set to true if the field is required.', table: { category: 'Options', defaultValue: { summary: false }, }, type: { name: 'boolean', required: false, }, }, size: { control: { type: 'select', }, description: 'The label size.', options: ['medium', 'small'], table: { category: 'Options', defaultValue: { summary: 'small' }, }, type: { name: 'string', required: false, }, }, }, } as ComponentMeta; const Template: ComponentStory = ({ children, ...args }) => {children}; /** * Label Story */ export const Label = Template.bind({}); Label.args = { children: 'A label', };