@visactor/react-vtable
Version:
The react version of VTable
24 lines (23 loc) • 672 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: {
(props: EmptyTipProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};