UNPKG

@brizy/ui

Version:
12 lines (11 loc) 320 B
import { FCC } from "../types"; export interface Props { open: boolean; onClose?: () => void; closable?: boolean; isSidebar?: boolean; animation?: "right" | "left"; getContainer?: HTMLElement | (() => HTMLElement) | false | null; className?: string; } export declare const Modal: FCC<Props>;