import { ComponentStory, ComponentMeta } from '@storybook/react'; import { Box } from './Box'; export default { component: Box, } as ComponentMeta; export const Demo: ComponentStory = (args) => ; Demo.args = { bg: 'accent', color: 'window', padding: 10, borderWidth: 1, borderStyle: 'solid', borderColor: 'border', children: "I'm a box. Try changing the controls.", textDecoration: undefined, }; export const TextDecoration: ComponentStory = () => ( <> Overline Underline Line-through );