props.js 648 B

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