This commit is contained in:
Emily
2024-07-22 15:07:51 +02:00
parent 31c10b13b2
commit f3542f711b
8 changed files with 133 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
<script lang="ts" setup>
const props = defineProps<{ icon: string }>();
</script>
<template>
<span class="material-symbols-outlined">
{{ props.icon }}
</span>
</template>