42 lines
664 B
Vue
42 lines
664 B
Vue
<template>
|
|
<svg
|
|
aria-hidden="true"
|
|
class="svg-icon"
|
|
:style="'width:' + size + ';height:' + size"
|
|
>
|
|
<use :xlink:href="symbolId" :fill="color" />
|
|
</svg>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
const props = defineProps({
|
|
prefix: {
|
|
type: String,
|
|
default: 'icon'
|
|
},
|
|
iconClass: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
color: {
|
|
type: String
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: '1em'
|
|
}
|
|
});
|
|
|
|
const symbolId = computed(() => `#${props.prefix}-${props.iconClass}`);
|
|
</script>
|
|
|
|
<style scoped>
|
|
.svg-icon {
|
|
vertical-align: -0.15em;
|
|
overflow: hidden;
|
|
fill: currentColor;
|
|
}
|
|
</style>
|