15 lines
244 B
Vue
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>
|