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