import type { Meta, StoryObj } from '@storybook/react'; import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from '@konobangu/design-system/components/ui/dialog'; /** * A window overlaid on either the primary window or another dialog window, * rendering the content underneath inert. */ const meta = { title: 'ui/Dialog', component: Dialog, tags: ['autodocs'], argTypes: {}, 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 dialog. */ export const Default: Story = {};