vantui-edit
Version:
一套适用于Taro3及React的vantui组件库
19 lines (15 loc) • 435 B
TypeScript
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 }