index.js 512 B

1234567891011121314151617181920212223242526
  1. import { LoadingDefaultProps } from './props';
  2. import '../_util/assert-component2';
  3. Component({
  4. properties: {
  5. type: {
  6. value: 'spin',
  7. type: String,
  8. },
  9. color: {
  10. type: String,
  11. },
  12. size: {
  13. type: String,
  14. },
  15. style: {
  16. type: String,
  17. },
  18. className: {
  19. type: String,
  20. },
  21. },
  22. options: {
  23. styleIsolation: 'shared',
  24. },
  25. props: LoadingDefaultProps,
  26. });