vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <g clip-path="url(#clip0)" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round">
        <path d="M13.334 13.333L10 10l-3.333 3.333M10 10v7.5" />
        <path d="M16.992 15.325A4.167 4.167 0 0015 7.5h-1.05A6.667 6.667 0 102.5 13.583" />
        <path d="M13.334 13.333L10 10l-3.333 3.333" />
      </g>
      <defs>
        <clipPath id="clip0"><path fill="#fff" d="M0 0h20v20H0z" /></clipPath>
      </defs>
    </svg>
  </i>
</template>

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