UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

21 lines (20 loc) 572 B
/** * Props for hamburger menu. */ type HamburgerMenuProps = { isOpen: boolean; onClick?: () => void; className?: string; }; /** * An animated hamburger menu button component. * * This component renders a 3-bar hamburger icon that animates into an "X" when * the menu is open. * * @param props - Contains the open state, an optional click handler, and optional className * * @private Internal component */ export declare function HamburgerMenu({ isOpen, onClick, className }: HamburgerMenuProps): import("react/jsx-runtime").JSX.Element; export {};