SvgIcon.vue 537 Bytes
<template>
  <svg class="svg-icon" aria-hidden="true">
    <use :xlink:href="iconName"></use>
  </svg>
</template>

<script>
  export default {
    name: 'SvgIcon',
    props: {
      icon: {
        type: String,
        required: true,
        default: 'icon-icon_apply_common',
      },
    },
    computed: {
      iconName() {
        return `#${this.icon}`
      },
    },
  }
</script>

<style>
  .svg-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
  }
</style>