import FormInput from "."; import { ComponentStory, ComponentMeta } from '@storybook/react'; import search from '../../assets/svg/search.svg'; export default { title: 'Components/Input', component: FormInput, argTypes: { variant: { options: ['outlined', 'filled'], control: { type: 'radio' }, }, size: { options: ['small', 'medium'], control: { type: 'radio' }, }, } } as ComponentMeta const Template: ComponentStory = (args) => export const FormComponent = Template.bind({}); FormComponent.args = { variant: "outlined", size: 'small', placeholder:'Enter Name', sx:{ backgroundColor:"" } }; export const StartIcon: ComponentStory = () => } /> export const EndIcon: ComponentStory = () => } />