UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

7 lines (6 loc) 250 B
import { Column, OnSort, Row } from "./types"; export type Props<T> = { column: Column<T>; onSort?: OnSort; }; export declare const VuiTableHeaderCell: <T extends Row>({ column, onSort }: Props<T>) => import("react/jsx-runtime").JSX.Element;