import type { Meta, StoryObj } from '@storybook/react' import { FormLabel } from './FormLabel' import { type FormLabelProps } from './FormLabel.types' const meta: Meta = { component: FormLabel, argTypes: { children: { control: { type: 'text', }, }, help: { control: { type: 'text', }, }, }, } export default meta export const Primary: StoryObj = { args: { htmlFor: 'test', help: 'Lorem ipsum', children: 'Label', }, }