Files
homebox/frontend/components/Base/SectionHeader.vue
Tonya 9afd20c513 Sort themes and remove daisyui (#643)
* feat: sort themes and remove daisyui

* docs: update docs to reflect daisyui being removed

* feat: remove specific colours for better theme compatibility
2025-04-27 09:01:27 +00:00

18 lines
406 B
Vue

<template>
<div class="pb-3">
<CardTitle class="flex items-center">
<slot />
</CardTitle>
<CardDescription v-if="$slots.description">
<slot name="description" />
</CardDescription>
<div v-if="$slots.after">
<slot name="after" />
</div>
</div>
</template>
<script lang="ts" setup>
import { CardDescription, CardTitle } from "@/components/ui/card";
</script>