UNPKG

@visactor/react-vtable

Version:
24 lines (23 loc) 672 B
import type { BaseComponentProps } from '../base-component'; export type EmptyTipProps = { text?: string; textStyle?: { fontSize?: number; fontFamily?: string; fontWeight?: string | number; fontVariant?: string; lineHeight?: number | string; underline?: number; lineThrough?: number; color?: string; }; icon?: { width?: number; height?: number; image: string; }; } & BaseComponentProps; export declare const EmptyTip: { (props: EmptyTipProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; };