blog.z0x.ca/src/components/Container.astro
2024-09-11 22:54:47 -07:00

11 lines
191 B
Text

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