Caprice LogoCaprice UI

Table

A responsive table component.

Installation

npx shadcn@latest add @caprice/table

Usage

import * as Table from "@/components/caprice-ui/table"
<Table.Root>
  <Table.Caption Caption>A list of your recent invoices.</Table.Caption>
  <Table.Header>
    <Table.Row>
      <Table.Head className="w-[100px]">Invoice</Table.Head>
      <Table.Head>Status</Table.Head>
      <Table.Head>Method</Table.Head>
      <Table.Head className="text-right">Amount</Table.Head>
    </Table.Row>
  </Table.Header>
  <Table.Body>
    <Table.Row>
      <Table.Cell className="font-medium">INV001</Table.Cell>
      <Table.Cell>Paid</Table.Cell>
      <TableCell>Credit Card</TableCell>
      <TableCell className="text-right">$250.00</TableCell>
    </Table.Row>
  </Table.Body>
</Table.Root>