/** * Sidebar Item / Expanded / 1st Level Stories * @generated 2025-12-11T14:37:52.633240 */ import type { Meta, StoryObj } from '@storybook/preact'; import { SidebarItemExpanded1stLevel, type SidebarItemExpanded1stLevelProps } from '../src/atoms/SidebarItemExpanded1stLevel'; const meta: Meta = { title: '2. Atoms/SidebarItemExpanded1stLevel', component: SidebarItemExpanded1stLevel, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated SidebarItemExpanded1stLevel component **Classification:** atom **Slots:** None **Figma ID:** 27:3414` } } }, argTypes: { state: { control: 'select', options: ['Active', 'Active Focus', 'Default', 'Focus'], description: 'State variant', }, type: { control: 'select', options: ['Badge', 'Base', 'Collapsed', 'Dropdown', 'Expanded'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { state: 'Active', type: 'Badge', children: 'SidebarItemExpanded1stLevel' }, };