/** * Alert Dialog Stories * @generated 2025-12-11T14:37:52.564485 */ import type { Meta, StoryObj } from '@storybook/preact'; import { AlertDialog, type AlertDialogProps } from '../src/atoms/AlertDialog'; const meta: Meta = { title: '3. Molecules/AlertDialog', component: AlertDialog, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated AlertDialog component **Classification:** molecule **Slots:** None **Figma ID:** 139:11941` } } }, argTypes: { type: { control: 'select', options: ['Desktop', 'Mobile'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Desktop', children: 'AlertDialog' }, };