mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
11 lines
189 B
Vue
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> |