UNPKG

adizen-tanstack-table

Version:

Enhanced DataTable with TanStack Table

8 lines (7 loc) 324 B
import { type Table as TanStackTable } from "@tanstack/react-table"; import { type TableTheme } from "../types"; export declare const TablePagination: <T>({ table, pageSizeOptions, theme, }: { table: TanStackTable<T>; pageSizeOptions?: number[]; theme: TableTheme; }) => import("react/jsx-runtime").JSX.Element;