/** * Sidebar Group Label Stories * @generated 2025-12-11T14:37:52.634095 */ import type { Meta, StoryObj } from '@storybook/preact'; import { SidebarGroupLabel, type SidebarGroupLabelProps } from '../src/atoms/SidebarGroupLabel'; const meta: Meta = { title: '2. Atoms/SidebarGroupLabel', component: SidebarGroupLabel, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated SidebarGroupLabel component **Classification:** atom **Slots:** label **Figma ID:** 176:23790` } } }, argTypes: { type: { control: 'select', options: ['Action', 'Base', 'Collapsed', 'Expanded'], description: 'Type variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { type: 'Action', children: 'SidebarGroupLabel' }, };