@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
10 lines (9 loc) • 428 B
TypeScript
import { Sections, Tree } from "../types";
export declare const buildSideNavItems: (items: Sections | Tree) => import("react/jsx-runtime").JSX.Element | null;
export type Props = {
size?: "m" | "l";
canCollapseSelf?: boolean;
items?: Sections | Tree;
content?: React.ReactNode;
};
export declare const VuiAppSideNav: ({ size, items, content, canCollapseSelf }: Props) => import("react/jsx-runtime").JSX.Element;