UNPKG

vantui-edit

Version:

一套适用于Taro3及React的vantui组件库

15 lines (11 loc) 387 B
import { FunctionComponent, ReactNode } from 'react' import { ViewProps } from '@tarojs/components' export interface EmptyProps extends ViewProps { description?: string image?: 'error' | 'search' | 'default' | 'network' | string children?: ReactNode renderImage?: ReactNode renderDescription?: ReactNode } declare const Empty: FunctionComponent<EmptyProps> export { Empty }