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