import type { ComponentMeta, ComponentStory } from '@storybook/react'; import * as C from './typography'; export default { title: 'Typography', component: C.Typography, } as ComponentMeta; export const Typography: ComponentStory = (args) => ; Typography.args = { children: 'Typography text', variant: 'paragraph', };