/** * Dialog Footer Stories * @generated 2025-12-11T14:37:52.595530 */ import type { Meta, StoryObj } from '@storybook/preact'; import { DialogFooter, type DialogFooterProps } from '../src/atoms/DialogFooter'; const meta: Meta = { title: '3. Molecules/DialogFooter', component: DialogFooter, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated DialogFooter component **Classification:** molecule **Slots:** None **Figma ID:** 176:21284` } } }, argTypes: { type: { control: 'select', options: ['2 Buttons Right', '2 Full-width Buttons', 'Single Full-width Button'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: '2 Buttons Right', children: 'DialogFooter' }, };