src/components/Container.astro (view raw)
1 2 3 4 5 6 7 8 9 10 11
--- import { cn } from '@/lib/utils' interface Props { class?: string } const { class: className } = Astro.props --- <div class={cn('mx-auto max-w-screen-md px-4', className)}><slot /></div>