Table Header Cell

Individual header cell component used within a table header row.

Basic Usage

Name
Email
Status

With Width

Name
Email
Status

With Alignment

Name
Status
Amount

Complete Example with Aligned Columns

Name
Email
Status
Amount
John Doe
john@example.com
Active
$99.99
Jane Smith
jane@example.com
Pending
$149.50
interface TableHeaderCellProps {
  children: React.ReactNode;
  width?: string;      // e.g., '200px', '25%', 'auto'
  minWidth?: string;   // Minimum width constraint
  align?: 'left' | 'center' | 'right';  // Text alignment (default: 'left')
}