/** * Sidebar Item / Expanded / 2nd Level Stories * @generated 2025-12-11T14:37:52.633614 */ import type { Meta, StoryObj } from '@storybook/preact'; import { SidebarItemExpanded2ndLevel, type SidebarItemExpanded2ndLevelProps } from '../src/atoms/SidebarItemExpanded2ndLevel'; const meta: Meta = { title: '2. Atoms/SidebarItemExpanded2ndLevel', component: SidebarItemExpanded2ndLevel, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated SidebarItemExpanded2ndLevel component **Classification:** atom **Slots:** None **Figma ID:** 28:5147` } } }, argTypes: { state: { control: 'select', options: ['Active', 'Default'], description: 'State variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { state: 'Active', children: 'SidebarItemExpanded2ndLevel' }, };