From f4a2fe9fdf63f658b841faa14c085bbcac18f92a Mon Sep 17 00:00:00 2001
From: Shafira Ayu Maharani <a.maharanishafira@gmail.com>
Date: Wed, 9 Sep 2020 15:45:11 +0700
Subject: [PATCH] cursor pointer warning

---
 components/Popups/Warning.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/Popups/Warning.js b/components/Popups/Warning.js
index cda7222..fb8f72c 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>
-- 
GitLab