UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

22 lines (21 loc) 728 B
import React from 'react'; import { ActivityIndicatorPropTypes } from './PropsType'; import { IActivityIndicatorStyle } from './style/index.native'; export interface ActivityIndicatorNativeProps extends ActivityIndicatorPropTypes { styles?: IActivityIndicatorStyle; color?: string; } export default class RNActivityIndicator extends React.Component<ActivityIndicatorNativeProps, any> { static defaultProps: { animating: boolean; color: string; size: string; toast: boolean; styles: { [x: string]: import("react-native").RegisteredStyle<any>; }; }; _renderToast(): JSX.Element; _renderSpinner(): JSX.Element; render(): JSX.Element | null; }