1234567891011121314151617181920212223242526272829303132 |
- const props = {
- color: {
- type: null,
- value: '',
- },
- externalClasses: {
- type: Array,
- },
- label: {
- type: null,
- value: true,
- },
- percentage: {
- type: Number,
- value: 0,
- },
- status: {
- type: String,
- },
- strokeWidth: {
- type: null,
- },
- theme: {
- type: String,
- value: 'line',
- },
- trackColor: {
- type: String,
- value: '',
- },
- };
- export default props;
|