import type { Meta, StoryObj } from '@storybook/react'; import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from '@konobangu/design-system/components/ui/sheet'; /** * Extends the Dialog component to display content that complements the main * content of the screen. */ const meta: Meta = { title: 'ui/Sheet', component: Sheet, tags: ['autodocs'], argTypes: { side: { options: ['top', 'bottom', 'left', 'right'], control: { type: 'radio', }, }, }, args: { side: 'right', }, render: (args) => ( Open Are you absolutely sure? This action cannot be undone. This will permanently delete your account and remove your data from our servers. ), parameters: { layout: 'centered', }, } satisfies Meta; export default meta; type Story = StoryObj; /** * The default form of the sheet. */ export const Default: Story = {};