import { ComponentMeta, ComponentStory } from "@storybook/react"; import Label from "../../components/Label"; export default { title: 'Texts/Label', component: Label, argTypes: { size: { control: 'select' }, color: { control: 'select' }, fontColor: { control: 'color' } } } as ComponentMeta; const Template: ComponentStory = (args) =>