UNPKG

@vectara/vectara-ui

Version:

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

10 lines (9 loc) 319 B
export type Props = { name: string; header: { isSortable?: boolean; render?: () => React.ReactNode; }; onSort?: (column: string, direction: "asc" | "desc") => void; }; export declare const VuiTableHeaderCell: ({ name, header, onSort }: Props) => import("react/jsx-runtime").JSX.Element;