mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-21 15:12:34 +02:00
19 lines
408 B
JavaScript
19 lines
408 B
JavaScript
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;
|