import { Meta, Story } from '@storybook/react'; import React, { useState } from 'react'; import { ChainIcon } from '../Icons'; import { Select, SelectProps } from '.'; export default { component: Select, title: 'Components/Select', } as Meta; type OptionType = { icon?: React.ReactNode; id: number; isDisabled?: boolean; name: string; }; const Template: Story> = (args) => { const [selectedOptionId, setSelectedOptionId] = useState(null); return (