import type { Meta, StoryObj } from '@storybook/react'; import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, } from '@konobangu/design-system/components/ui/drawer'; /** * A drawer component for React. */ const meta: Meta = { title: 'ui/Drawer', component: Drawer, tags: ['autodocs'], argTypes: {}, render: (args) => ( Open Are you sure absolutely sure? This action cannot be undone. ), parameters: { layout: 'centered', }, }; export default meta; type Story = StoryObj; /** * The default form of the drawer. */ export const Default: Story = {};