@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
8 lines (7 loc) • 309 B
TypeScript
import { Column, OnSort, Row } from "./types";
export type Props<T> = {
column: Column<T>;
onSort?: OnSort;
sortDirection: "asc" | "desc" | "none";
};
export declare const VuiTableHeaderCell: <T extends Row>({ column, onSort, sortDirection }: Props<T>) => import("react/jsx-runtime").JSX.Element;