blog.z0x.ca/src/components/Container.astro
2025-02-18 15:25:52 -08:00

13 lines
208 B
Text

---
import { cn } from '@/lib/utils'
interface Props {
class?: string
}
const { class: className } = Astro.props
---
<div class={cn('mx-auto max-w-(--breakpoint-md) px-4', className)}>
<slot />
</div>