/** * Table Cell Stories * @generated 2025-12-11T14:37:52.590518 */ import type { Meta, StoryObj } from '@storybook/preact'; import { TableCell, type TableCellProps } from '../src/atoms/TableCell'; const meta: Meta = { title: '2. Atoms/TableCell', component: TableCell, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated TableCell component **Classification:** atom **Slots:** None **Figma ID:** 19:6314` } } }, argTypes: { content: { control: 'select', options: ['Actions', 'Avatar', 'Avatar + Name', 'Badge', 'Buttons', 'Checkbox', 'Input', 'Text (1 Line)', 'Text (2 Lines)'], description: 'Content variant', }, alignment: { control: 'select', options: ['Left', 'Right'], description: 'Alignment variant', }, state: { control: 'select', options: ['Active', 'Default', 'Hover', 'Selected'], description: 'State variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { content: 'Actions', alignment: 'Left', state: 'Active', children: 'TableCell' }, };