CheckIcon.vue 423 B

123456789101112131415161718
  1. <template>
  2. <svg viewBox="0 0 20 20" aria-hidden="true">
  3. <path
  4. stroke-linecap="round"
  5. stroke-linejoin="round"
  6. d="M10 1.5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17Z"/>
  7. <path
  8. fill="none"
  9. stroke-linecap="round"
  10. stroke-linejoin="round"
  11. d="m7.5 10.5 2 2c1-3.5 3-5 3-5"/>
  12. </svg>
  13. </template>
  14. <script setup>
  15. </script>