vuesion/vuesion

View on GitHub
src/components/icons/VueIconRewind.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 15.833L1.667 10l7.5-5.833v11.666zM18.333 15.833L10.833 10l7.5-5.833v11.666z"
        stroke="currentColor"
        stroke-width="1"
        stroke-linecap="round"
        stroke-linejoin="round"
      />
    </svg>
  </i>
</template>

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