import { Small } from "./"; import type {SmallProps} from "./Small.props.ts"; import type { Meta, StoryObj } from '@storybook/react-vite'; const meta: Meta = { title: "Typography/Small", component: Small, args: { children: "O Brasil é caramelo", size: "default", }, argTypes: { size: { options: ["default", "regular"], control: { type: "radio" }, }, } }; export default meta; export const Default: StoryObj = {};