Spinner.vue 481 B

12345678910111213141516171819202122
  1. <template>
  2. <svg
  3. class="h-4 animate-spin w-4"
  4. xmlns="http://www.w3.org/2000/svg"
  5. fill="none"
  6. viewBox="0 0 24 24"
  7. >
  8. <circle
  9. class="opacity-25"
  10. cx="12"
  11. cy="12"
  12. r="10"
  13. stroke="currentColor"
  14. stroke-width="4"
  15. />
  16. <path
  17. class="opacity-75"
  18. fill="currentColor"
  19. d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
  20. />
  21. </svg>
  22. </template>