diff --git a/components/Popups/Warning.js b/components/Popups/Warning.js index cda7222d8389b8066e9fc5574f6a9de014404072..fb8f72c1e11de3ee8169e12156eecf413a8d0639 100644 --- a/components/Popups/Warning.js +++ b/components/Popups/Warning.js @@ -10,12 +10,12 @@ const Warning = ({ message, confirmButton='Ya', rejectButton='Batal', onConfirm, <div className="warningText">Perhatian!</div> <div className="desc" style={{ marginLeft: "46px", marginRight: "46px", marginTop: "20px" }}>{ message }</div> <div style={{ width:"50%", float:"left"}}> - <div className="redButton" style={{ marginLeft: "59px", marginTop: "49px" }} onClick={onConfirm} > + <div className="redButton" style={{ marginLeft: "59px", marginTop: "49px", cursor: "pointer" }} onClick={onConfirm} > <p className="text">{ confirmButton }</p> </div> </div> <div style={{ width:"50%", float:"right"}}> - <div className="greyButton" style={{ marginLeft: "45px", marginTop: "49px" }} onClick={onReject} > + <div className="greyButton" style={{ marginLeft: "45px", marginTop: "49px", cursor: "pointer" }} onClick={onReject} > <p className="text">{ rejectButton }</p> </div> </div>