vuesion/vuesion

View on GitHub
src/components/icons/VueIconBackspace.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.5 3.333H6.666L.833 10l5.833 6.667H17.5A1.667 1.667 0 0019.166 15V5A1.667 1.667 0 0017.5 3.333v0zM15 7.5l-5 5M10 7.5l5 5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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