15 lines
260 B
Vue
15 lines
260 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
</script>
|
|
|
|
<template>
|
|
<h1
|
|
:class="cn(
|
|
'text-3xl font-bold leading-tight tracking-tighter md:text-5xl lg:leading-[1.1]',
|
|
$attrs.class ?? '',
|
|
)"
|
|
>
|
|
<slot />
|
|
</h1>
|
|
</template>
|