mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 21:33:02 +01:00
* feat: sort themes and remove daisyui * docs: update docs to reflect daisyui being removed * feat: remove specific colours for better theme compatibility
18 lines
406 B
Vue
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>
|