UNPKG

antd-mobile

Version:

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

11 lines (10 loc) 484 B
import { FC, ReactElement, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type ErrorBlockProps = { status?: 'default' | 'disconnected' | 'empty' | 'busy'; title?: ReactNode; image?: string | ReactElement; description?: ReactNode; fullPage?: boolean; } & NativeProps<'--image-height' | '--image-height-full-page' | '--image-width' | '--image-width-full-page'>; export declare const ErrorBlock: FC<ErrorBlockProps>;