You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
510 B

import * as React from 'react';
import { ActivityIndicatorPropTypes } from './PropsType';
export interface ActivityIndicatorProps extends ActivityIndicatorPropTypes {
prefixCls?: string;
className?: string;
}
export default class ActivityIndicator extends React.Component<ActivityIndicatorProps, any> {
static defaultProps: {
prefixCls: string;
animating: boolean;
size: string;
panelColor: string;
toast: boolean;
};
render(): JSX.Element | null;
}