vuesion/vuesion

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

Summary

Maintainability
Test Coverage
A
100%
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M17.5 10h-15M17.5 15h-15M17.5 5h-15"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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