forked from Musish/Musish
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f7b0a5
commit 775a43c
Showing
3 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
src/components/Core/Layout/NavigationBar/Logout/Logout.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react'; | ||
import classes from './Logout.scss'; | ||
|
||
export default class Logout { | ||
|
||
render() { | ||
return( | ||
<div className={classes.logoutWrapper}> | ||
<span>Logout</span> | ||
</div> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@import '../../../../../styles/settings/colors'; | ||
|
||
.logoutWrapper { | ||
|
||
span { | ||
font-size: 12px; | ||
color: $player_icon_color; | ||
} | ||
} |