zhou20120904's picture
Upload 48 files
a62d4c5 verified
raw
history blame contribute delete
445 Bytes
import { ReactNode } from 'react'
interface ModalProps {
children?: ReactNode
}
export default function Modal(props: ModalProps) {
const { children } = props
return (
<div
className={[
'absolute w-full h-full flex justify-center items-center',
'bg-white bg-opacity-40 backdrop-filter backdrop-blur-md',
].join(' ')}
>
<div className="bg-primary p-16 max-w-4xl">{children}</div>
</div>
)
}