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

import { Select } from '@/components/inputs';
import { SELECT_DATA } from '@/stories/select/Select.data';

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

export default meta;

type TStory = StoryObj<typeof Select>;

export const Primary: TStory = {
  args: {
    options: SELECT_DATA,
    size: 'sm',
    theme: 'light',
  },
};
