import type { Meta, StoryObj } from '@storybook/react'; import { ButtonContent } from './ButtonContent' import React from 'react'; 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: <>, }, };