mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-19 10:22:16 +01:00
28 lines
468 B
Vue
28 lines
468 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
icon: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: 'gray',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<span class="inline-flex items-center">
|
|
<UIcon
|
|
class="mr-1"
|
|
:name="`i-logos:${icon}`"
|
|
/>
|
|
<span
|
|
:class="`text-${color}-500 decoration-${color}-300`"
|
|
class="sofia font-medium underline-offset-2 underline"
|
|
>
|
|
<slot />
|
|
</span>
|
|
</span>
|
|
</template>
|