props.js 497 B

1234567891011121314151617181920212223242526272829303132
  1. const props = {
  2. color: {
  3. type: null,
  4. value: '',
  5. },
  6. externalClasses: {
  7. type: Array,
  8. },
  9. label: {
  10. type: null,
  11. value: true,
  12. },
  13. percentage: {
  14. type: Number,
  15. value: 0,
  16. },
  17. status: {
  18. type: String,
  19. },
  20. strokeWidth: {
  21. type: null,
  22. },
  23. theme: {
  24. type: String,
  25. value: 'line',
  26. },
  27. trackColor: {
  28. type: String,
  29. value: '',
  30. },
  31. };
  32. export default props;