vuesion/vuesion

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

Summary

Maintainability
Test Coverage
<template>
  <i>
    <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
      <path
        d="M9.167 4.167L5 7.5H1.667v5H5l4.167 3.333V4.167zM19.167 7.5l-5 5M14.167 7.5l5 5"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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