import { Meta, Story } from '@storybook/react'; import { PropsWithChildren } from 'react'; import { Play, RefreshCw, Square, Trash2 } from 'lucide-react'; import { Button } from './Button'; import { ButtonGroup, Props } from './ButtonGroup'; export default { component: ButtonGroup, title: 'Components/Buttons/ButtonGroup', } as Meta; function Template({ size, }: JSX.IntrinsicAttributes & PropsWithChildren) { return ( ); } export const Primary: Story> = Template.bind({}); Primary.args = { size: 'small', }; export function Xsmall() { return ( ); } export function Small() { return ( ); } export function Large() { return ( ); }