vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M18.334 15.833a1.666 1.666 0 01-1.667 1.667H3.334a1.667 1.667 0 01-1.667-1.667V4.167A1.667 1.667 0 013.334 2.5H7.5L9.167 5h7.5a1.667 1.667 0 011.667 1.667v9.166zM7.5 11.667h5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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