Files
litlyx/lyx-ui/components/Icon.vue
Emily 3eb32145aa .
2024-07-22 16:31:54 +02:00

11 lines
189 B
Vue

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