You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
497 B
33 lines
497 B
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;
|