Files
litlyx/dashboard/components/LyxUi/Icon.vue
2024-11-18 14:33:09 +01: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>