diff --git a/client/src/__locales/en.json b/client/src/__locales/en.json
index a978b315..d2d7bfe7 100644
--- a/client/src/__locales/en.json
+++ b/client/src/__locales/en.json
@@ -390,7 +390,7 @@
     "password_label": "Password",
     "password_placeholder": "Enter password",
     "sign_in": "Sign in",
-    "logout": "Logout",
+    "sign_out": "Sign out",
     "forgot_password": "Forgot password?",
     "forgot_password_desc": "Please follow <0>these steps</0> to create a new password for your user account."
 }
diff --git a/client/src/components/Header/index.js b/client/src/components/Header/index.js
index ecd3ea25..28fa0767 100644
--- a/client/src/components/Header/index.js
+++ b/client/src/components/Header/index.js
@@ -61,7 +61,7 @@ class Header extends Component {
                         <div className="header__column">
                             <div className="header__right">
                                 <a href="/control/logout" className="btn btn-sm btn-outline-secondary">
-                                    <Trans>logout</Trans>
+                                    <Trans>sign_out</Trans>
                                 </a>
                             </div>
                         </div>
diff --git a/client/src/components/ui/Icons.js b/client/src/components/ui/Icons.js
index 1655bc8e..ef2fbf85 100644
Binary files a/client/src/components/ui/Icons.js and b/client/src/components/ui/Icons.js differ