shadcn-vue/apps/www/.vitepress/theme/components/PageHeaderDescription.vue
2024-02-07 22:21:48 +08:00

11 lines
310 B
Vue

<script setup lang="ts">
import WrapBalancer from 'vue-wrap-balancer'
import { cn } from '@/lib/utils'
</script>
<template>
<WrapBalancer :class="cn('max-w-[750px] text-center text-lg text-muted-foreground sm:text-xl', $attrs.class ?? '')" :prefer-native="false">
<slot />
</WrapBalancer>
</template>