fix: design of sent mail message,change variable name emailCount to emailList

This commit is contained in:
RaktimaNXG
2023-12-05 13:08:42 +05:30
parent ac0cdd28cf
commit 428bb3b7c3
4 changed files with 43 additions and 42 deletions
@@ -0,0 +1,18 @@
import React from "react";
import "../../css/signature.css";
function EmailToast({ isShow }) {
return (
<div
style={{ display: isShow ? "flex" : "none", justifyContent: "center" }}
>
<div className="emailToast">
<span style={{ fontSize: "12px", fontWeight: "500" }}>
Email sent successfully!
</span>
</div>
</div>
);
}
export default EmailToast;