Renders an individual cell within a deprecated table row component, handling text alignment, width constraints, and automatic text styling for primitive values. ## Key Components - **`TableCell`** *(deprecated)* — A `div`-based cell component that wraps content with configurable alignment and overflow handling. Primitive `string`/`number` children are automatically wrapped in a styled `` with truncation; React node children render as-is. ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `children` | `ReactNode` | — | Cell content | | `align` | `'left' \| 'center' \| 'right'` | `'left'` | Text and flex alignment | | `className` | `string` | — | Additional CSS classes | | `width` | `string` | — | Tailwind width class; falls back to `flex-1 min-w-0` | ## Usage Example ```typescript // ⚠️ Deprecated — use DataTable from data-table instead import { TableCell } from './table-cell' 42 Active ``` > ⚠️ **Deprecated** — This component is no longer recommended. Use `DataTable` from the `data-table` module for new implementations.