mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
22 lines
367 B
Vue
22 lines
367 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
icon: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="inline">
|
|
<UIcon
|
|
class="mb-1 mr-1"
|
|
:name="icon"
|
|
:dynamic="true"
|
|
/>
|
|
<span class="sofia font-medium underline decoration-neutral-300 dark:decoration-neutral-700">
|
|
<slot />
|
|
</span>
|
|
</div>
|
|
</template>
|