import type { Meta, StoryObj } from '@storybook/react' import { Label } from './Label' const meta: Meta = { title: 'Components/Label', component: Label, argTypes: {}, } export default meta type Story = StoryObj export const Default: Story = { args: { children: 'Label', required: false, }, } export const Discreet: Story = { args: { children: 'Label', size: 'discreet', }, } export const Small: Story = { args: { children: 'Label', size: 'small', }, }