UNPKG

@carrot-farm/mongsil-ui

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