Files
dss/packages/dss-ui/stories/SidebarGroupLabel.stories.tsx
DSS 09b234a07f
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled
feat(dss-ui): Button component with design tokens only
- Button.css uses only CSS custom properties, no fallbacks
- Token validator now blocks hardcoded values (strict_mode: true)
- Hook scripts converted from ESM (.js) to CommonJS (.cjs)
- Storybook unified config with HMR disabled for nginx proxy
- Added dss-ui package with Figma-synced components and stories

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-11 18:47:57 -03:00

41 lines
907 B
TypeScript

/**
* 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<SidebarGroupLabelProps> = {
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<SidebarGroupLabelProps>;
export const Default: Story = {
args: {
type: 'Action',
children: 'SidebarGroupLabel'
},
};