import type { Meta, StoryObj } from '@storybook/react' import { SvgAdd } from '../../icons' import { Button } from './Button' import { BUTTON_SET_ORIENTATION_OPTIONS, BUTTON_SET_SIZE_OPTIONS, ButtonSet, } from './ButtonSet' const meta = { title: 'Blocks/ButtonSet', component: ButtonSet, argTypes: { size: { control: { type: 'select' }, options: BUTTON_SET_SIZE_OPTIONS, }, orientation: { control: { type: 'select' }, options: BUTTON_SET_ORIENTATION_OPTIONS, }, }, args: { size: 'default', orientation: 'responsive', }, } satisfies Meta export default meta type Story = StoryObj export const Responsive: Story = { render: (args) => ( ), } export const Horizontal: Story = { render: (args) => ( ), } export const Vertical: Story = { render: (args) => ( ), } export const SizesTextOnly: Story = { render: (args) => (
), } export const SizesWithIcon: Story = { render: (args) => (
), }