UNPKG

@vectara/vectara-ui

Version:

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

8 lines (7 loc) 253 B
import { Column, Row } from "./types"; type Props<T> = { column?: Column<T>; children: React.ReactNode; }; export declare const VuiTableCell: <T extends Row>({ column, children }: Props<T>) => import("react/jsx-runtime").JSX.Element; export {};