16 lines
222 B
Vue
16 lines
222 B
Vue
|
<template>
|
||
|
<img class="icon" :src="`/assets/icons/${name}.svg`" />
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
name: string,
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.icon {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|