@brizy/ui
Version:
React elements in Brizy style
12 lines (11 loc) • 320 B
TypeScript
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>;