vuematerial/vue-material

View on GitHub
src/core/icons/MdArrowLeftIcon.vue

Summary

Maintainability
Test Coverage
A
100%
<template>
  <md-icon class="md-icon-image" v-once>
    <svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
      <path d="M15.41 16.09l-4.58-4.59 4.58-4.59L14 5.5l-6 6 6 6z" />
      <path d="M0-.5h24v24H0z" fill="none" />
    </svg>
  </md-icon>
</template>

<script>
  import MdIcon from 'components/MdIcon/MdIcon'

  export default {
    name: 'MdArrowLeftIcon',
    components: {
      MdIcon
    }
  }
</script>