Initial commit.

This commit is contained in:
2025-12-10 21:09:25 +00:00
commit 9d4de0e6b6
73 changed files with 15219 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<script setup>
defineProps({
title: {
type: String,
required: true
},
icon: {
type: String,
default: ''
},
iconColor: {
type: String,
default: 'text-primary-500'
}
})
</script>
<template>
<h2 class="text-2xl font-bold text-gray-800 dark:text-white mb-6">
<i v-if="icon" :class="[icon, iconColor]" class="mr-2"></i>{{ title }}
<slot name="suffix"></slot>
</h2>
</template>