Skip to content
Harness Design System

Table

The Table component provides a way to display tabular data with various sub-components for customization.

Usage

import { Table } from '@harnessio/ui/components'
//...
return (
<Table.Root variant="asStackedList">
<Table.Header>
<Table.Row>
<Table.Head>Name</Table.Head>
<Table.Head>Email</Table.Head>
<Table.Head>Display Name</Table.Head>
<Table.Head>Date added</Table.Head>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>John Doe</Table.Cell>
<Table.Cell>john@example.com</Table.Cell>
<Table.Cell>John</Table.Cell>
<Table.Cell>2023-01-01</Table.Cell>
</Table.Row>
</Table.Body>
</Table.Root>
)

Anatomy

All parts of the Table component can be imported and composed as required.

<Table.Root variant="asStackedList">
<Table.Caption>List of users</Table.Caption>
<Table.Header>
<Table.Row>
<Table.Head>Name</Table.Head>
<Table.Head>Email</Table.Head>
<Table.Head>Display Name</Table.Head>
<Table.Head>Date added</Table.Head>
</Table.Row>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>John Doe</Table.Cell>
<Table.Cell>john@example.com</Table.Cell>
<Table.Cell>John</Table.Cell>
<Table.Cell>2023-01-01</Table.Cell>
</Table.Row>
</Table.Body>
<Table.Footer>
<Table.Row>
<Table.Cell colSpan={4}>Total users: 1</Table.Cell>
</Table.Row>
</Table.Footer>
</Table.Root>

API Reference

Root

The root component for the table.

<Table.Root
variant="asStackedList" // [OPTIONAL] Variant of the table
disableXScroll={false} // [OPTIONAL] Disable horizontal scroll
className="custom-class" // [OPTIONAL] Custom class name
tableClassName="custom-table-class" // [OPTIONAL] Custom table class name
>
{/* Table content */}
</Table.Root>
PropRequiredDefaultType
variantfalsedefault'default' | 'asStackedList'
disableXScrollfalsefalseboolean
classNamefalsestring
tableClassNamefalsestring

The header section of the table.

<Table.Header
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Header content */}
</Table.Header>
PropRequiredDefaultType
classNamefalsestring

Body

The body section of the table.

<Table.Body
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Body content */}
</Table.Body>
PropRequiredDefaultType
classNamefalsestring

The footer section of the table.

<Table.Footer
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Footer content */}
</Table.Footer>
PropRequiredDefaultType
classNamefalsestring

Row

A row within the table.

<Table.Row
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Row content */}
</Table.Row>
PropRequiredDefaultType
classNamefalsestring

A header cell within the table.

<Table.Head
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Header cell content */}
</Table.Head>
PropRequiredDefaultType
classNamefalsestring

Cell

A cell within the table.

<Table.Cell
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Cell content */}
</Table.Cell>
PropRequiredDefaultType
classNamefalsestring

Caption

A caption for the table.

<Table.Caption
className="custom-class" // [OPTIONAL] Custom class name
>
{/* Caption content */}
</Table.Caption>
PropRequiredDefaultType
classNamefalsestring