import type { Meta, StoryObj } from '@storybook/react' import { ButtonContent } from './ButtonContent' const meta: Meta = { component: ButtonContent, title: 'atoms/ButtonContent', args: { children: 'Button Content', icon: Icon } } export default meta type Story = StoryObj export const Primary: Story = { args: { icon: <> } }