Files
clean-cuts/components/MaterialIcon.vue
2024-05-02 20:53:45 -05:00

19 lines
349 B
Vue

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