UNPKG

@gizwits/vantui

Version:

机智云组件库

19 lines (15 loc) 435 B
import { FunctionComponent, ReactNode } from 'react' import { ViewProps } from '@tarojs/components' export interface ProgressProps extends ViewProps { inactive?: boolean percentage: number pivotText?: ReactNode pivotColor?: string trackColor?: string showPivot?: boolean color?: string textColor?: string strokeWidth?: number | string } declare const Progress: FunctionComponent<ProgressProps> export { Progress }