You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
452 B

5 years ago
<template>
<svg class="svg-icon" aria-hidden="true" v-on="$listeners">
5 years ago
<use :xlink:href="`#icon-${name}` " />
5 years ago
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
name: {
type: String,
required: true
}
}
}
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>