import type { StoryObj, Meta } from '@storybook/react'; import { Text, TextProps } from '@rocketseat-ignite-ui/react'; export default { title: 'Typography/Text', component: Text, args: { children: 'Lorem ipsum dolor sit amet consectetur, adipisicing elit.', size: 'md', }, argTypes: { size: { options: [ 'xxs', 'xs', 'sm', 'md', 'lg', 'xl', '2xl', '4xl', '5xl', '6xl', '7xl', '8xl', '9xl', ], control: { type: 'select', }, }, children: { table: { disable: true, }, }, }, } as Meta; export const Default: StoryObj = {}; export const CustomTag: StoryObj = { args: { children: 'Strong lorem ipsum', as: 'strong', }, };