/** * Sonner Content Stories * @generated 2025-12-11T14:37:52.640195 */ import type { Meta, StoryObj } from '@storybook/preact'; import { SonnerContent, type SonnerContentProps } from '../src/atoms/SonnerContent'; const meta: Meta = { title: '3. Molecules/SonnerContent', component: SonnerContent, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated SonnerContent component **Classification:** molecule **Slots:** icon **Figma ID:** 139:11366` } } }, argTypes: { type: { control: 'select', options: ['Line and button', 'Lines and button', 'Loading', 'Simple'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Line and button', children: 'SonnerContent' }, };