grid-item-props.js 427 B

123456789101112131415161718192021222324252627
  1. const props = {
  2. description: {
  3. type: String,
  4. },
  5. externalClasses: {
  6. type: Array,
  7. },
  8. image: {
  9. type: String,
  10. },
  11. jumpType: {
  12. type: String,
  13. value: 'navigate-to',
  14. },
  15. layout: {
  16. type: String,
  17. value: 'vertical',
  18. },
  19. text: {
  20. type: String,
  21. },
  22. url: {
  23. type: String,
  24. value: '',
  25. },
  26. };
  27. export default props;