Init commit

This commit is contained in:
Blossomi Shymae
2024-05-01 20:38:02 -05:00
commit 75bc1827e4
29 changed files with 11845 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>