36 lines
567 B
Vue
36 lines
567 B
Vue
![]() |
<template>
|
||
|
<svg class="svg-icon" aria-hidden="true">
|
||
|
<use :href="symbolId" :fill="color" />
|
||
|
</svg>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { computed } from 'vue'
|
||
|
|
||
|
const props = defineProps({
|
||
|
prefix: {
|
||
|
type: String,
|
||
|
default: 'icon'
|
||
|
},
|
||
|
name: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
},
|
||
|
color: {
|
||
|
type: String,
|
||
|
default: '#333'
|
||
|
}
|
||
|
})
|
||
|
|
||
|
const symbolId = computed(() => `#${props.prefix}-${props.name}`)
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.svg-icon {
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
fill: currentColor;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
</style>
|