Initial commit

This commit is contained in:
2024-06-21 00:21:49 +02:00
commit a99f3a4396
38 changed files with 17209 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<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>