vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M5 7.5V1.667h10V7.5M5 15H3.334a1.667 1.667 0 01-1.667-1.667V9.167A1.667 1.667 0 013.334 7.5h13.333a1.667 1.667 0 011.667 1.667v4.166A1.666 1.666 0 0116.667 15H15"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
      <path
        d="M15 11.667H5v6.666h10v-6.666z"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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