Table
Tabular data display with optional striping.
Basic table
| Name | Role | Status |
|---|---|---|
| Alice Johnson | Administrator | Active |
| Bob Smith | Editor | Active |
| Carol White | Viewer | Inactive |
tsx
<Table columns={columns} rows={rows} />Striped table
| Name | Role | Status |
|---|---|---|
| Alice Johnson | Administrator | Active |
| Bob Smith | Editor | Active |
| Carol White | Viewer | Inactive |
tsx
<Table columns={columns} rows={rows} striped />Empty state
| Name | Role | Status |
|---|---|---|
| No records found. | ||
tsx
<Table columns={columns} rows={[]} empty="No records found." />