import { type Meta, type StoryObj } from '@storybook/react' import { Text } from '../index' const meta = { title: 'Components/Text', component: Text, args: { variant: 'body', children: 'The quick brown fox jumps over the lazy dog.', }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { args: { color: 'dark', }, parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, }