summaryrefslogtreecommitdiff
path: root/src/components/navigation/LogoutButton.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-08-27 17:42:50 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:45 +0200
commit2c42e9488771070d8efec5d91835cd8c7885f4b1 (patch)
tree63efba6438169ba4f74940cbdba72ad5d2396773 /src/components/navigation/LogoutButton.js
parentd22fa82e50d8ac540584659225c1c113d939251b (diff)
Restyle navbar and use across entire site
Diffstat (limited to 'src/components/navigation/LogoutButton.js')
-rw-r--r--src/components/navigation/LogoutButton.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/navigation/LogoutButton.js b/src/components/navigation/LogoutButton.js
index e2da7751..d58776dc 100644
--- a/src/components/navigation/LogoutButton.js
+++ b/src/components/navigation/LogoutButton.js
@@ -1,11 +1,11 @@
import PropTypes from "prop-types";
import React from "react";
+import FontAwesome from "react-fontawesome";
import {Link} from "react-router-dom";
-import "./LogoutButton.css";
const LogoutButton = ({onLogout}) => (
- <Link className="logout" title="Sign out" to="#" onClick={onLogout}>
- <span className="fa fa-lg fa-power-off"/>
+ <Link className="logout nav-link" title="Sign out" to="#" onClick={onLogout}>
+ <FontAwesome name="power-off" size="lg"/>
</Link>
);