props.js 314 B

1234567891011121314151617
  1. export var ProgressBarDefaultProps = {
  2. percent: 0,
  3. type: 'line',
  4. speed: 6,
  5. width: 100,
  6. strokeWidth: 8,
  7. };
  8. export var ProgressBarFunctionalProps = {
  9. percent: 0,
  10. type: 'line',
  11. width: 100,
  12. strokeWidth: 8,
  13. status: null,
  14. strokeColor: '',
  15. trailColor: '',
  16. speed: 6,
  17. };