type ModalProps = { open: boolean; onClose: () => void; children: React.ReactNode; }; export default function Modal({ open, onClose, children }: ModalProps) { return (
e.stopPropagation()} className={`shadow rounded-xl transition-all ${ open ? "scale-100 opacity-100" : "scale-75 opacity-0" }`} > {children}
); }