import type { Meta, StoryObj } from '@storybook/react'; import { RadioGroup, RadioGroupItem, } from '@konobangu/design-system/components/ui/radio-group'; /** * A set of checkable buttons—known as radio buttons—where no more than one of * the buttons can be checked at a time. */ const meta = { title: 'ui/RadioGroup', component: RadioGroup, tags: ['autodocs'], argTypes: {}, args: { defaultValue: 'comfortable', className: 'grid gap-2 grid-cols-[1rem_1fr] items-center', }, render: (args) => ( ), } satisfies Meta; export default meta; type Story = StoryObj; /** * The default form of the radio group. */ export const Default: Story = {};