20 lines
288 B
JavaScript
20 lines
288 B
JavaScript
const props = {
|
|
customStyle: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
description: {
|
|
type: String,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
icon: {
|
|
type: null,
|
|
},
|
|
image: {
|
|
type: String,
|
|
},
|
|
};
|
|
export default props;
|