knowyt/client/src/components/Icon.vue

16 lines
222 B
Vue
Raw Normal View History

<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>