Files
clean-cuts/components/MaterialIcon.vue
Blossomi Shymae 75bc1827e4 Init commit
2024-05-01 20:38:02 -05:00

19 lines
302 B
Vue

<template>
<svg :width="size" :height="size">
<image :href="`/lib/MaterialDesign/svg/${name}.svg`"
:width="size"
:height="size"/>
</svg>
</template>
<script setup lang="ts">
defineProps<{
name: string,
size: number
}>();
</script>
<style lang="scss" scoped>
</style>