LiveAtlas/src/components/SvgIcon.vue

48 lines
812 B
Vue
Raw Normal View History

2020-12-12 21:35:55 +00:00
<template>
<svg :class="className" xmlns="http://www.w3.org/2000/svg">
<title v-if="title">{{ title }}</title>
<use :xlink:href="iconPath" xmlns:xlink="http://www.w3.org/1999/xlink"/>
</svg>
</template>
<script>
export default {
name: 'svg-icon',
props: {
name: {
type: String,
required: true
},
title: {
type: String,
default: null
}
},
computed: {
iconPath() {
let icon = require(`@/assets/icons/${this.name}.svg`);
if (Object.prototype.hasOwnProperty.call(icon, 'default')) {
icon = icon.default;
}
return icon.url;
},
className() {
return 'svg-icon svg-icon--' + this.name;
}
}
};
</script>
<style>
.svg-icon {
fill: currentColor;
height: 24px;
width: 24px;
}
</style>