vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M7.5 18.333a.833.833 0 100-1.666.833.833 0 000 1.666zM16.666 18.333a.833.833 0 100-1.666.833.833 0 000 1.666zM.833.833h3.333L6.4 11.992a1.667 1.667 0 001.666 1.341h8.1a1.667 1.667 0 001.667-1.341L19.166 5H5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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