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