collapse-panel-props.js 410 B

1234567891011121314151617181920212223242526
  1. const props = {
  2. content: {
  3. type: String,
  4. },
  5. disabled: {
  6. type: Boolean,
  7. value: null,
  8. },
  9. expandIcon: {
  10. type: Boolean,
  11. value: true,
  12. },
  13. externalClasses: {
  14. type: Array,
  15. },
  16. header: {
  17. type: String,
  18. },
  19. headerRightContent: {
  20. type: String,
  21. },
  22. value: {
  23. type: null,
  24. },
  25. };
  26. export default props;