UNPKG

@gdjiami/jm-mrc-components

Version:

移动端可复用组件库

13 lines (12 loc) 405 B
import { BasePropsType } from 'components/common/BasePropsType'; import { FC } from 'react'; import './style/index.css'; interface ActivityIndicatorProps extends BasePropsType { visible?: boolean; toast?: boolean; size?: 'large' | 'small'; text?: string; panelColor?: string; } declare const ActivityIndicator: FC<ActivityIndicatorProps>; export default ActivityIndicator;