import { Meta, StoryObj } from '@storybook/react-webpack5'; import Emphasis from './Emphasis'; export default { component: Emphasis, title: 'Typography/Emphasis', } satisfies Meta; type Story = StoryObj; export const Basic: Story = { args: { text: 'This is important.\\n' + 'This is positive.\\n' + 'This is negative.\\n' + 'This is a warning.\\n' + '', }, };