import React from "react"; import Modal from "react-bootstrap/Modal"; import ModalHeader from "react-bootstrap/esm/ModalHeader"; import { themeColor } from "../../utils/ThemeColor/backColor"; function AlertComponent({ isShow, alertMessage, setIsAlert, isdefaultSign, addDefaultSignature, headBG }) { return ( Alert {alertMessage} {isdefaultSign ? ( <> ) : ( )} ); } export default AlertComponent;