mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-23 11:51:53 +01:00
18 lines
285 B
Vue
18 lines
285 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">
|
|
<slot />
|
|
</span>
|
|
</div>
|
|
</template>
|