A data table with a header, zebra rows on the well surface, a brand-tint row hover and an indigo selection. Numbers use tabular figures.
| Client | Status | Value |
|---|---|---|
| Acme Ltd | Active | £4,200 |
| Globex | Draft | £1,050 |
| Initech | Queued | £820 |
<Table
columns={['Client', 'Status', 'Value']}
rows={[
{ Client: 'Acme Ltd', Status: <Badge tone="success">Active</Badge>, Value: '£4,200' },
{ Client: 'Globex', Status: <Badge tone="warning">Draft</Badge>, Value: '£1,050' },
]}
/>