shadcn-vue/apps/www/.vitepress/theme/components/PageHeaderHeading.vue
2024-11-20 00:15:52 +08:00

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-4xl lg:leading-[1.1]',
$attrs.class ?? '',
)"
>
<slot />
</h1>
</template>