props.js 242 B

12345678910111213141516
  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. };
  16. export default props;