vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M14.166 1.667h2.225a1.925 1.925 0 011.942 1.666v5.834a1.925 1.925 0 01-1.942 1.666h-2.225M8.333 12.5v3.333a2.5 2.5 0 002.5 2.5l3.333-7.5V1.667h-9.4A1.667 1.667 0 003.1 3.083l-1.15 7.5A1.667 1.667 0 003.616 12.5h4.717z"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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