UNPKG

@excalidraw/excalidraw

Version:
14 lines (13 loc) 456 B
import React from "react"; import "./Dialog.scss"; export type DialogSize = number | "small" | "regular" | "wide" | undefined; export interface DialogProps { children: React.ReactNode; className?: string; size?: DialogSize; onCloseRequest(): void; title: React.ReactNode | false; autofocus?: boolean; closeOnClickOutside?: boolean; } export declare const Dialog: (props: DialogProps) => import("react/jsx-runtime").JSX.Element;