瀏覽代碼

update login button text

AykutSarac 2 年之前
父節點
當前提交
ca9cd881c4
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/containers/Modals/LoginModal/index.tsx

+ 3 - 1
src/containers/Modals/LoginModal/index.tsx

@@ -1,4 +1,5 @@
 import React from "react";
+import { AiOutlineGoogle } from "react-icons/ai";
 import { altogic } from "src/api/altogic";
 import { Button } from "src/components/Button";
 import { Modal, ModalProps } from "src/components/Modal";
@@ -15,7 +16,8 @@ export const LoginModal: React.FC<ModalProps> = ({ setVisible, visible }) => {
         <h2>Welcome Back!</h2>
         <p>Login to unlock full potential of JSON Crack!</p>
         <Button onClick={handleLoginClick} status="SECONDARY" block>
-          Login
+          <AiOutlineGoogle size={24} />
+          Login with Google
         </Button>
       </Modal.Content>
       <Modal.Controls setVisible={setVisible} />