antd
Version:
An enterprise-class UI design language and React components implementation
9 lines (8 loc) • 322 B
TypeScript
import type { FC } from 'react';
import React from 'react';
import type { ModalProps } from '../interface';
export interface NormalOkBtnProps extends Pick<ModalProps, 'confirmLoading' | 'okType' | 'okButtonProps' | 'onOk'> {
okTextLocale?: React.ReactNode;
}
declare const NormalOkBtn: FC;
export default NormalOkBtn;