26 lines
393 B
JavaScript
26 lines
393 B
JavaScript
|
const props = {
|
||
|
content: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
icon: {
|
||
|
type: String,
|
||
|
},
|
||
|
status: {
|
||
|
type: String,
|
||
|
value: 'default',
|
||
|
},
|
||
|
subStepItems: {
|
||
|
type: Array,
|
||
|
value: [],
|
||
|
},
|
||
|
title: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
};
|
||
|
export default props;
|