props.js 290 B

12345678910111213141516171819
  1. const props = {
  2. animation: {
  3. type: String,
  4. },
  5. externalClasses: {
  6. type: Array,
  7. },
  8. loading: {
  9. type: Boolean,
  10. },
  11. rowCol: {
  12. type: Array,
  13. },
  14. theme: {
  15. type: String,
  16. value: 'text',
  17. },
  18. };
  19. export default props;