UNPKG

@carrot-farm/mongsil-ui

Version:
7 lines (6 loc) 301 B
/// <reference types="react" /> import { DialogPropos } from '../Dialog'; export interface PromptProps extends Pick<DialogPropos, 'title' | 'body' | 'visible' | 'onOk' | 'onClose'> { } declare function Prompt({ title, body, visible, onOk, onClose, }: PromptProps): JSX.Element; export default Prompt;