UNPKG

@vectara/vectara-ui

Version:

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

22 lines (21 loc) 573 B
export declare const APP_CONTENT_PADDING: readonly ["none", "xs", "s", "m", "l", "xl"]; export type AppContentPadding = (typeof APP_CONTENT_PADDING)[number]; export type Tree = Array<TreeItem>; export type TreeItem = { name: string; path?: string; pages?: Tree; iconBefore?: React.ReactNode; iconAfter?: React.ReactNode; isSelected?: boolean; className?: string; "data-testid"?: string; }; export type Sections = Array<{ name: string; pages: Array<SectionItem>; }>; export type SectionItem = { name: string; path: string; };