UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

8 lines (7 loc) 280 B
import { PropsWithChildren } from 'react'; export type DrawerProps = { title?: string | null; open: boolean; onClose?(): void; }; export declare const Drawer: ({ title, open, onClose, children, }: PropsWithChildren<DrawerProps>) => import("react").ReactPortal | null;