import { Meta, StoryObj } from '@storybook/react'; import { UnstyledButton } from '.'; export default { args: {}, component: UnstyledButton, title: 'Components/UnstyledButton', } as Meta; export const Default: StoryObj = { args: { children: 'Click Me', }, }; export const Inline: StoryObj = { args: { children: 'Inline Button', display: 'inline-block', }, }; export const Invisible: StoryObj = { args: { children: 'Invisible Button', display: 'none', }, };