import type { Meta, StoryObj } from '@storybook/react'; import Typography from './Typography'; const meta: Meta = { title: 'StyleGuide/Typography', component: Typography, tags: ['autodocs'], }; type Story = StoryObj; export const AllFonts: Story = { args: {}, }; export default meta;