11 lines
310 B
Vue
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>
|