@visactor/react-vtable
Version:
The react version of VTable
21 lines (20 loc) • 561 B
TypeScript
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: import("react").FC<EmptyTipProps>;