vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M2.5 5h15M6.667 5V3.333a1.667 1.667 0 011.667-1.666h3.333a1.667 1.667 0 011.667 1.666V5m2.5 0v11.667a1.666 1.666 0 01-1.667 1.666H5.834a1.667 1.667 0 01-1.667-1.666V5h11.667zM8.333 9.167v5M11.667 9.167v5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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