UNPKG

rtaro-ui

Version:
21 lines (12 loc) 432 B
import { MouseEvent, ComponentClass } from 'react' import AtComponent from './base' export interface AtActivityIndicatorProps extends AtComponent{ size?: number | 'small' | 'large' mode?: 'center' | 'normal' color?: string tip?: string delay?: number | string spinning?: boolean } declare const AtActivityIndicator: ComponentClass<AtActivityIndicatorProps> export default AtActivityIndicator