mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-12 04:37:39 +02:00
fix: design of sent mail message,change variable name emailCount to emailList
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user