/** * Command Item Stories * @generated 2025-12-11T14:37:52.582710 */ import type { Meta, StoryObj } from '@storybook/preact'; import { CommandItem, type CommandItemProps } from '../src/atoms/CommandItem'; const meta: Meta = { title: '2. Atoms/CommandItem', component: CommandItem, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated CommandItem component **Classification:** atom **Slots:** None **Figma ID:** 66:5600` } } }, argTypes: { state: { control: 'select', options: ['Active', 'Hover', 'Regular'], description: 'State variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { state: 'Active', children: 'CommandItem' }, };