shadcn-vue/apps/www/.vitepress/theme/components/PageHeaderDescription.vue
2023-09-23 21:43:58 +08:00

11 lines
298 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 ?? '')" :prefer-native="false">
<slot />
</WrapBalancer>
</template>