vuesion/vuesion

View on GitHub
src/components/icons/VueIconPaperClip.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.867 9.208l-7.659 7.659a5.003 5.003 0 11-7.075-7.075l7.659-7.659a3.335 3.335 0 114.716 4.717l-7.666 7.658a1.667 1.667 0 11-2.359-2.358l7.075-7.067"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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