modo-mobile
Version:
A mobile UI toolkit, based on React
17 lines • 474 B
TypeScript
import * as React from 'react';
export interface ActivityIndicatorProps {
prefixCls?: string;
type?: 'carousel' | 'roller';
size?: number;
color?: string;
vertical?: boolean;
children?: React.ReactNode;
}
export default class ActivityIndicator extends React.PureComponent<ActivityIndicatorProps, any> {
static defaultProps: {
type: string;
vertical: boolean;
};
render(): JSX.Element;
}
//# sourceMappingURL=index.d.ts.map