1234567891011121314151617 |
- export var ProgressBarDefaultProps = {
- percent: 0,
- type: 'line',
- speed: 6,
- width: 100,
- strokeWidth: 8,
- };
- export var ProgressBarFunctionalProps = {
- percent: 0,
- type: 'line',
- width: 100,
- strokeWidth: 8,
- status: null,
- strokeColor: '',
- trailColor: '',
- speed: 6,
- };
|