UNPKG

@vectara/vectara-ui

Version:

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

8 lines (7 loc) 258 B
export type KvTableItem = { key: React.ReactNode; value: React.ReactNode; }; export type KvTableItems = KvTableItem[] | Record<string, unknown>; export type KvTablePadding = "xxs" | "xs" | "s"; export type KvTableAlign = "top" | "middle" | "bottom";