import type { Meta, StoryObj } from '@storybook/react'; import { IconButton } from '../app/components/IconButton'; import { Bars } from '../app/icons/Bars'; const meta = { title: 'Components/IconButton', component: IconButton, tags: ['autodocs'], args: { className: '', children: , }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { children: , }, }; export const Grey: Story = { args: { children: , color: 'grey', }, }; export const Rounded: Story = { args: { children: , color: 'grey', roundness: 'lg', }, }; export const Transparent: Story = { args: { children: , color: 'transparent', }, };