import { Meta, StoryObj } from '@storybook/react';

import { Checkbox } from '@/components/inputs';

const meta: Meta<typeof Checkbox> = {
  component: Checkbox,
};

export default meta;

type TStory = StoryObj<typeof Checkbox>;

export const CheckboxStory: TStory = {
  args: {
    id: 'checkbox',
    theme: 'light',
    disabled: false,
    size: 'sm',
    onChange: () => {},
    children: <div>Label</div>,
  },
};
