18 lines
531 B
React
18 lines
531 B
React
import React from "react";
|
||
|
||
export default function PopUp({ children, onClose }) {
|
||
return (
|
||
<div className="fixed inset-0 bg-black/60 flex items-center justify-center z-50">
|
||
<div className="bg-white rounded-xl shadow-lg p-8 min-w-[300px] relative">
|
||
<button
|
||
onClick={onClose}
|
||
className="absolute top-2 right-2 text-gray-500 hover:text-black text-xl font-bold leading-none"
|
||
aria-label="Close"
|
||
>
|
||
×
|
||
</button>
|
||
{children}
|
||
</div>
|
||
</div>
|
||
);
|
||
} |