import { XMarkIcon } from '@heroicons/react/24/outline'; import React, { useEffect } from 'react'; type ModalProps = { title: string; children: React.ReactNode; onCancel: () => void; onSubmit: () => void; cancelText: string; submitText: string; isOpen: boolean; disablehr?: boolean; }; const Modal: React.FC = ({ title, children, onCancel, onSubmit, cancelText, submitText, isOpen, disablehr, }) => { useEffect(() => { if (isOpen) { document.body.style.overflow = 'hidden'; } else { document.body.style.overflow = 'unset'; } }, [isOpen]); return ( isOpen && (

{title}

{!disablehr ? (
) : null}
{children}
{!disablehr ? (
) : null}
) ); }; export default Modal;