UNPKG

nice-ui

Version:

React design system, components, and utilities

20 lines (19 loc) 580 B
import * as React from 'react'; export interface ModalProps { title?: React.ReactNode; noAnimation?: boolean; raise?: boolean; contrast?: boolean; onEsc?: React.KeyboardEventHandler<any>; onOutsideClick?: React.MouseEventHandler<any>; onCloseClick?: React.MouseEventHandler<any>; footer?: React.ReactElement<any>; noBorders?: boolean; noBackground?: boolean; noPadding?: boolean; dontLockFocus?: boolean; color?: string; rounder?: boolean; children?: React.ReactNode; } export declare const Modal: React.FC<ModalProps>;