UNPKG

@vectara/vectara-ui

Version:

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

14 lines (13 loc) 402 B
type AccountMenuInfo = Array<{ title: string; value: React.ReactNode; }>; type Props = { isOpen: boolean; setIsOpen: (isOpen: boolean) => void; button: React.ReactElement; info?: AccountMenuInfo; children?: React.ReactNode; }; export declare const VuiAccountMenu: ({ isOpen, setIsOpen, button, info, children }: Props) => import("react/jsx-runtime").JSX.Element; export {};