shadcn-vue/apps/www/.vitepress/theme/components/PageHeaderHeading.vue

15 lines
272 B
Vue

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