blog.z0x.ca/src/components/Container.astro
z0x 36870785bc
All checks were successful
build dist / build-dist (push) Successful in 32s
refactor: biome lint
2025-04-24 22:12:22 -04:00

13 lines
210 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>