vuesion/vuesion

View on GitHub
src/components/icons/VueIconSupport.vue

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M10 18.333a8.333 8.333 0 100-16.666 8.333 8.333 0 000 16.666z"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
      <path
        d="M10 13.333a3.333 3.333 0 100-6.666 3.333 3.333 0 000 6.666zM4.108 4.108l3.534 3.534M12.358 12.358l3.534 3.534M12.358 7.642l3.534-3.534M12.358 7.642L15.3 4.7M4.108 15.892l3.534-3.534"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

<script lang="ts">
export default {
  name: 'VueIconSupport',
};
</script>