UNPKG

rp-data-chart

Version:

Rabbitpre data-chart components lib

28 lines (27 loc) 534 B
/** * loading 组件 * @author lifu * @since 2019-5-16 */ import * as React from 'react'; import './loading.less'; interface ILoadingProps { /** * 是否展示加载文字 */ showLoadingText?: boolean; /** * 加载的文案 */ loadingText?: string | number; /** * loading的icon大小 */ size?: string; /** * 自定义style */ style?: React.CSSProperties; } declare const Loading: React.SFC<ILoadingProps>; export default Loading;