vuesion/vuesion

View on GitHub
src/components/icons/VueIconSun.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 14.167a4.167 4.167 0 100-8.334 4.167 4.167 0 000 8.334zM10 .833V2.5M10 17.5v1.667M3.517 3.517L4.7 4.7M15.3 15.3l1.183 1.183M.833 10H2.5M17.5 10h1.667M3.517 16.483L4.7 15.3M15.3 4.7l1.183-1.183"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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