vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M17.159 11.175l-5.975 5.975a1.666 1.666 0 01-2.359 0L1.667 10V1.667H10l7.159 7.158a1.667 1.667 0 010 2.35v0zM5.833 5.833h.008"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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