UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

10 lines (9 loc) 333 B
import { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type ResultProps = { status: 'success' | 'error' | 'info' | 'waiting' | 'warning'; title: ReactNode; description?: ReactNode; icon?: ReactNode; } & NativeProps; export declare const Result: FC<ResultProps>;