import Button from "./button"; import { ComponentStory, ComponentMeta } from '@storybook/react'; import { AlertSVG } from "../../assets/svg"; export default { title:'Components/Button', component:Button, argTypes:{ variant:{ options:['outlined','contained','text'], control: { type: 'radio' }, }, color:{ options:['inherit' ,'primary','secondary','success', 'error','info','warning'], control: { type: 'radio'} }, size:{ options:['small', 'medium', 'large'], control: { type: 'radio' }, }, } } as ComponentMeta const Template: ComponentStory = (args) =>