UNPKG

@jdcfe/yep-react

Version:

一套移动端的React组件库

14 lines (13 loc) 370 B
import * as React from 'react'; declare const ProgressBar: React.FunctionComponent<ProgressBarProps>; export interface ProgressBarProps { prefixCls?: string; style?: React.CSSProperties; className?: string; percent?: number; backgroundColor?: string; colorStart?: string; colorEnd?: string; fixed?: boolean; } export default ProgressBar;