Table
Data table composed from sub-components for headers, rows, and cells. Designed for structured agent data with consistent HUD styling.
Basic Table
Preview
| Agent | Status | Missions |
|---|
| Alpha-7 | Active | 12 |
| Bravo-3 | Standby | 8 |
Table Props
| Prop | Type | Default | Description |
|---|
| className | string | - | Additional CSS classes for the table wrapper. |
TableHead Props
| Prop | Type | Default | Description |
|---|
| className | string | - | Additional CSS classes for the header cell. |
TableCell Props
| Prop | Type | Default | Description |
|---|
| className | string | - | Additional CSS classes for the body cell. |
Accessibility
- Renders semantic
<table>, <thead>, <tbody>, <tr>, <th>, and <td> elements <TableHead> uses <th> with implicit scope="col" for screen reader column association- Supports
ref forwarding on all sub-components - Passes through all standard HTML attributes including
aria-* and role