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