UNPKG

@vectara/vectara-ui

Version:

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

14 lines (13 loc) 449 B
import { ReactNode } from "react"; declare const COLOR: readonly ["primary", "danger"]; type Props = { className?: string; title: ReactNode; icon?: ReactNode; children: ReactNode; isOpen?: boolean; onClose?: () => void; color?: (typeof COLOR)[number]; }; export declare const VuiDrawer: ({ className, color, title, icon, children, isOpen, onClose, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};