vuesion/vuesion

View on GitHub
src/components/icons/VueIconUpload.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 12.5v3.333a1.666 1.666 0 01-1.667 1.667H4.167A1.667 1.667 0 012.5 15.833V12.5M14.166 6.667L10 2.5 5.833 6.667M10 2.5v10"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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