35 lines
558 B
JavaScript
35 lines
558 B
JavaScript
const props = {
|
|
content: {
|
|
type: String,
|
|
},
|
|
customStyle: {
|
|
type: String,
|
|
value: '',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
value: undefined,
|
|
},
|
|
expandIcon: {
|
|
type: Boolean,
|
|
value: undefined,
|
|
},
|
|
externalClasses: {
|
|
type: Array,
|
|
},
|
|
header: {
|
|
type: String,
|
|
},
|
|
headerRightContent: {
|
|
type: String,
|
|
},
|
|
placement: {
|
|
type: String,
|
|
value: 'bottom',
|
|
},
|
|
value: {
|
|
type: null,
|
|
},
|
|
};
|
|
export default props;
|