mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-07 00:48:20 +01:00
19 lines
334 B
Vue
19 lines
334 B
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<h3
|
|
:class="
|
|
cn('text-2xl font-semibold leading-none tracking-tight', props.class)
|
|
"
|
|
>
|
|
<slot />
|
|
</h3>
|
|
</template>
|