@brizy/ui
Version:
React elements in Brizy style
13 lines (12 loc) • 373 B
TypeScript
import { FCC } from "../types";
export interface Props {
open: boolean;
onClose?: () => void;
closable?: boolean;
isSidebar?: boolean;
animation?: "right" | "left";
getContainer?: string | HTMLElement | (() => HTMLElement) | false;
getStyleContainer?: Element | ShadowRoot;
className?: string;
}
export declare const AlphaModal: FCC<Props>;