/** * Basic Table Cell Stories * @generated 2025-12-11T14:37:52.648193 */ import type { Meta, StoryObj } from '@storybook/preact'; import { BasicTableCell, type BasicTableCellProps } from '../src/atoms/BasicTableCell'; const meta: Meta = { title: '2. Atoms/BasicTableCell', component: BasicTableCell, tags: ['autodocs'], parameters: { docs: { description: { component: `Auto-generated BasicTableCell component **Classification:** atom **Slots:** None **Figma ID:** 288:172242` } } }, argTypes: { parity: { control: 'select', options: ['Even', 'Odd'], description: 'Parity variant', }, alignment: { control: 'select', options: ['Left', 'Right'], description: 'Alignment variant', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { args: { parity: 'Even', alignment: 'Left', children: 'BasicTableCell' }, };