/** * Alert Stories * @generated 2025-12-11T14:37:52.563973 */ import type { Meta, StoryObj } from '@storybook/preact'; import { Alert, type AlertProps } from '../src/atoms/Alert'; const meta: Meta = { title: '3. Molecules/Alert', component: Alert, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated Alert component **Classification:** molecule **Slots:** None **Figma ID:** 58:5416` } } }, argTypes: { type: { control: 'select', options: ['Error', 'Neutral'], description: 'Type variant', }, flipIcon: { control: 'select', options: ['false', 'true'], description: 'Flip Icon variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Error', flipIcon: 'false', children: 'Alert' }, };