Table
Presents structured data in rows and columns.
| Invoice | Status | Amount |
|---|---|---|
| INV001 | Paid | $250.00 |
| INV002 | Pending | $150.00 |
| INV003 | Unpaid | $350.00 |
Installation
Install Table from Oros with shadcn CLI 4.13.0.
pnpm dlx shadcn@4.13.0 add @oros/tableUsage
import {
Table,
TableHeader,
TableBody,
TableFooter,
TableHead,
TableRow,
} from "@/components/ui/table"Open the Source tab in the preview for a complete working example.
Anatomy
| Export | Responsibility |
|---|---|
| Table | The root component that owns the primary structure and state. |
| TableHeader | Groups heading and introductory content. |
| TableBody | A composable part of the component anatomy. |
| TableFooter | Groups supporting actions or metadata. |
| TableHead | A composable part of the component anatomy. |
| TableRow | A composable part of the component anatomy. |
| TableCell | A composable part of the component anatomy. |
| TableCaption | A composable part of the component anatomy. |
API Reference
Table exports 8 named entries. Component exports accept the props of their underlying HTML element or Base UI component, plus an optional className, unless the source defines a more focused type.
TableComponentTableHeaderComponentTableBodyComponentTableFooterComponentTableHeadComponentTableRowComponentTableCellComponentTableCaptionComponent
Accessibility
- Table adds no application-specific accessible name by itself; use semantic content and label any interactive descendants.
- Do not communicate state or meaning through color alone, and verify the composed result at text zoom and with keyboard navigation.
Source
Table uses the standard shadcn API and is distributed through Oros. Installing it adds the component source and required dependencies to your app. The Source tab above shows a complete usage example.