slightning-coco-widget
Version:
SLIGHTNING 的 CoCo 控件框架。
10 lines (9 loc) • 396 B
TypeScript
import type { FC, ReactNode, CSSProperties } from 'react';
import { NativeProps } from '../../utils/native-props';
export declare type EmptyProps = {
image?: ReactNode;
imageStyle?: CSSProperties;
description?: ReactNode;
} & NativeProps;
/** @deprecated Empty has been deprecated and will be removed in the next major version. */
export declare const Empty: FC<EmptyProps>;