1234567891011121314151617181920212223242526 |
- const props = {
- content: {
- type: String,
- },
- disabled: {
- type: Boolean,
- value: null,
- },
- expandIcon: {
- type: Boolean,
- value: true,
- },
- externalClasses: {
- type: Array,
- },
- header: {
- type: String,
- },
- headerRightContent: {
- type: String,
- },
- value: {
- type: null,
- },
- };
- export default props;
|