props.d.ts 600 B

123456789101112131415161718
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 加载,用于提示局部或页面在加载中。
  4. */
  5. export interface ILoadingProps extends IBaseProps {
  6. /**
  7. * @description 加载时的颜色,当 type 为 'spin' 时,只支持十六进制颜色码,如'#fff'
  8. * @default '#fff'
  9. */
  10. color?: string;
  11. /**
  12. * @description 加载图标尺寸,当 type 为 'spin' 时生效
  13. * @default medium
  14. */
  15. size?: 'small' | 'medium' | 'large' | 'x-large';
  16. type?: 'spin' | 'mini';
  17. }
  18. export declare const LoadingDefaultProps: Partial<ILoadingProps>;