vuesion/vuesion

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

Summary

Maintainability
Test Coverage
A
100%
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M12.25 5.25a.833.833 0 000 1.167l1.334 1.333a.833.833 0 001.166 0l3.142-3.142a5 5 0 01-6.617 6.617l-5.758 5.758a1.768 1.768 0 01-2.5-2.5l5.758-5.758a5 5 0 016.617-6.617l-3.133 3.134-.009.008z"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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