UNPKG

zent

Version:

一套前端设计语言和基于React的实现

9 lines (8 loc) 286 B
import { FC } from 'react'; import { IAlertProps } from '../alert'; export declare type PromptType = 'warning' | 'strongHint' | 'weakHint'; export declare type IPromptProps = IAlertProps & { type: PromptType; }; export declare const Prompt: FC<IPromptProps>; export default Prompt;