import type { Meta, StoryObj } from '@storybook/react-vite'; import { Switch } from './Switch'; const meta: Meta = { title: 'UI kit/Form/Inputs/Switch', component: Switch, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: {}, }; export const Checked: Story = { args: { checked: true, }, }; export const Disabled: Story = { args: { disabled: true, }, }; export const Small: Story = { args: { size: 'sm', }, };