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

10 lines
198 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
</script>
<template>
<p :class="cn('max-w-2xl text-lg font-light text-foreground', $attrs.class ?? '')">
<slot />
</p>
</template>