shadcn-vue/apps/www/.vitepress/theme/components/PageHeaderDescription.vue
2023-09-05 14:29:34 +08:00

11 lines
275 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-lg text-muted-foreground sm:text-xl', $attrs.class ?? '')">
<slot />
</WrapBalancer>
</template>