props.js 371 B

123456789101112131415161718192021222324
  1. const props = {
  2. description: {
  3. type: String,
  4. },
  5. externalClasses: {
  6. type: Array,
  7. },
  8. icon: {
  9. type: String,
  10. value: '',
  11. },
  12. image: {
  13. type: String,
  14. },
  15. title: {
  16. type: String,
  17. value: '',
  18. },
  19. theme: {
  20. type: String,
  21. value: 'default',
  22. },
  23. };
  24. export default props;