import {Meta, StoryObj} from '@storybook/react'; import {TypographyComponent as Typography} from './typography.component'; import {AppProviderComponent} from '../../../providers'; import React from 'react'; const meta: Meta = { title: 'Atoms/Typography', component: Typography, }; export default meta; type Story = StoryObj; export const Default: Story = { render: (args) => , args: { children: 'Typography', color: 'gray', size: 'textMD', tag: 'span', weight: 400, }, };