33 lines
497 B
JavaScript
33 lines
497 B
JavaScript
|
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;
|