Loader.vue 836 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="loader inline-block ml-1">
  3. <svg
  4. version="1.1"
  5. class="fill-current h-5 w-5 inline-block"
  6. xmlns="http://www.w3.org/2000/svg"
  7. xmlns:xlink="http://www.w3.org/1999/xlink"
  8. x="0px"
  9. y="0px"
  10. viewBox="0 0 50 50"
  11. style="enable-background:new 0 0 50 50;"
  12. xml:space="preserve"
  13. >
  14. <path
  15. d="M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z"
  16. >
  17. <animateTransform
  18. attributeType="xml"
  19. attributeName="transform"
  20. type="rotate"
  21. from="0 25 25"
  22. to="360 25 25"
  23. dur="0.6s"
  24. repeatCount="indefinite"
  25. />
  26. </path>
  27. </svg>
  28. </div>
  29. </template>