11 lines
196 B
Text
11 lines
196 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 px-4', className)}><slot /></div>
|