import React from "react"; import "../../css/customModal.css"; import "../../css/signature.css"; function CustomModal({ show, headMsg, bodyMssg, footerMessage, declineDoc, setIsDecline, containerWH }) { const isMobile = window.innerWidth < 767; return ( show && (
{headMsg && headMsg}

{bodyMssg && bodyMssg}

{footerMessage && ( <>
)}
) ); } export default CustomModal;