import { CalendarIcon } from '@channel.io/bezier-icons' import { type Meta, type StoryFn } from '@storybook/react' import { Text } from '~/src/components/Text' import { Select } from './Select' import { type SelectProps } from './Select.types' const meta: Meta< SelectProps & { wrapperSize: number } > = { component: Select, argTypes: { wrapperSize: { control: { type: 'number', }, defaultValue: 200, }, }, } export default meta const Template: StoryFn = ({ wrapperSize, ...args }) => (