vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M3.333 10v6.667A1.667 1.667 0 005 18.333h10a1.667 1.667 0 001.666-1.666V10M13.334 5L10 1.667 6.667 5M10 1.667V12.5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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