frontend/components/ui/card/CardTitle.vue

18 lines
325 B
Vue
Raw Normal View History

2024-11-30 02:19:32 +01:00
<script setup lang="ts">
import { cn } from "@/lib/utils";
import type { HTMLAttributes } from "vue";
const props = defineProps<{
class?: HTMLAttributes["class"];
}>();
</script>
<template>
<h3
data-slot="card-title"
:class="cn('leading-none font-semibold', props.class)"
2024-11-30 02:19:32 +01:00
>
<slot />
</h3>
</template>