mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 09:01:21 +00:00
13 lines
340 B
Svelte
13 lines
340 B
Svelte
<script lang="ts">
|
|
import Balancer from 'svelte-wrap-balancer';
|
|
import { cn } from '$lib/utils';
|
|
|
|
let className: string | undefined | null = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<p class={cn('max-w-[750px] text-lg text-muted-foreground sm:text-xl', className)} {...$$restProps}>
|
|
<Balancer>
|
|
<slot />
|
|
</Balancer>
|
|
</p>
|