frontend/app/components/ui/UiIcon.vue
2026-02-15 10:48:23 +01:00

15 lines
244 B
Vue

<template>
<span class="material-symbols-outlined"><slot></slot></span>
</template>
<style scoped>
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24;
font-size: 1.25rem;
}
</style>