17 lines
275 B
Vue
17 lines
275 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<h3
|
|
data-slot="card-title"
|
|
:class="cn('leading-none font-semibold', props.class)"
|
|
>
|
|
<slot />
|
|
</h3>
|
|
</template>
|