UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 539 B
import type { FC } from 'react'; import React from 'react'; import type { ConfirmDialogProps } from '../ConfirmDialog'; export interface ConfirmOkBtnProps extends Pick<ConfirmDialogProps, 'close' | 'isSilent' | 'okType' | 'okButtonProps' | 'rootPrefixCls' | 'onConfirm' | 'onOk'> { autoFocusButton?: false | 'ok' | 'cancel' | null; okTextLocale?: string | number | true | React.ReactElement<any, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>; } declare const ConfirmOkBtn: FC; export default ConfirmOkBtn;