Data Table

Actions
A
Amara Okaforamara@northwind.io
ScaleActive$4,820Jan 4, 2026
D
Diego Santosdiego@lumen.app
StarterTrial$0Feb 18, 2026
P
Priya Nairpriya@vertex.co
GrowthActive$2,140Nov 22, 2025
T
Tom Fischertom@basecamp.dev
StarterChurned$380Aug 9, 2025
L
Lena Björklena@aurora.se
ScaleActive$6,390Mar 2, 2026
M
Marcus Reedmarcus@hexa.io
StarterTrial$0Feb 27, 2026

8 row(s)

Page 1 of 2
About this component

Data Table

Client-side data-table engine: column-driven config with custom cell renderers, sortable headers, keyword search, row selection, per-row action menus, and pagination. Owns all state; blocks pass columns + rows as data.

Usage

The import and the props worth knowing about, in one place.

import { DataTable, type DataTableColumn } from "@/components/beste/component/data-table";
import { Eye, Trash2 } from "lucide-react";

type Row = { id: string; name: string; spend: number };

const columns: DataTableColumn<Row>[] = [
  { id: "name", header: "Name", sortable: true, value: (r) => r.name },
  { id: "spend", header: "Spend", sortable: true, align: "right", value: (r) => r.spend },
];

<DataTable
  columns={columns}
  data={rows}
  searchable
  selectable
  pageSize={8}
  rowActions={[
    { id: "view", label: "View", icon: Eye },
    { id: "delete", label: "Delete", icon: Trash2, destructive: true },
  ]}
  onRowAction={(action, row) => console.log(action, row.id)}
/>

Props

Read from the component's own type, so this cannot drift from what it accepts.

PropTypeDefaultDescription
columns*DataTableColumn<Row>[]
data*Row[]
searchableboolean
searchPlaceholderstring
selectableboolean
rowActionsDataTableAction[]
onRowAction(actionId: string, row: Row) => void
onSelectionChange(ids: Array<string | number>) => void
pageSizenumber
toolbarReactNodeExtra content rendered on the right of the toolbar (buttons, filters)
emptyMessagestring
borderedbooleanWrap the table in a bordered card surface (default true)
classNamestring

More Dashboard components

View all Dashboard

January 2026

Sun
Mon
Tue
Wed
Thu
Fri
Sat

Calendar Month

A month grid with selectable days, a today marker, colored event dots per day, and prev/next month controls. Data-driven (weekStart + daysInMonth) so it renders deterministically; controlled or self-managed selection.

8 AM10 AM12 PM2 PM4 PM6 PM

Atrium Loft

Floor 3 · 12 seats

Studio B

Floor 2 · 8 seats

Garden Room

Ground · 20 seats

Rooftop Deck

Level 5 · 40 seats

Schedule Timeline

A Gantt-style day timeline: resource rows against an hour axis with time-positioned event bars (left/width computed from start/end), grid lines, a live 'now' marker, colored tones, and clickable bars with a hover tooltip showing the event and its time range. Ideal for room bookings, shifts, and resource scheduling.

Sidebar Nav

Dashboard sidebar with a brand header, grouped nav items, Lucide icons, trailing count badges, and an active state. Collapse is driven from the shell topbar via the `collapsed` prop (icon rail when true).

User Menu

Topbar account menu: avatar trigger with name and email, dropdown with icon items, keyboard shortcuts, and a destructive sign-out row. Compact avatar-only mode for dense headers.

Notifications Menu

Topbar bell trigger with an unread count and a popover feed: icon rows with title, description, timestamp, unread dots, a mark-all-read action, and a scrollable list. Manages read state internally.

Color Picker

OKLCH-native colour picker: a gamut-aware lightness and chroma plane, RGB and OKLCH tabs whose rows show their own colour ramp on hover, a field that accepts hex, rgb() or oklch(), screen eyedropper and preset swatches.