UNPKG

@brizy/ui

Version:
11 lines (10 loc) 312 B
import { ReactElement } from "react"; export interface Props { content: ReactElement; children: ReactElement; opened?: boolean; getContainer?: () => HTMLElement; onOpenedChange?: (o: boolean) => void; width?: string; } export declare const ToolbarPopover: (props: Props) => ReactElement;