props.js 581 B

12345678910111213141516171819202122232425262728293031323334353637
  1. const props = {
  2. badgeProps: {
  3. type: Object,
  4. value: null,
  5. },
  6. description: {
  7. type: String,
  8. },
  9. externalClasses: {
  10. type: Array,
  11. },
  12. icon: {
  13. type: null,
  14. },
  15. image: {
  16. type: String,
  17. },
  18. imageProps: {
  19. type: Object,
  20. },
  21. jumpType: {
  22. type: String,
  23. value: 'navigate-to',
  24. },
  25. layout: {
  26. type: String,
  27. value: 'vertical',
  28. },
  29. text: {
  30. type: String,
  31. },
  32. url: {
  33. type: String,
  34. value: '',
  35. },
  36. };
  37. export default props;