Use bank icon for wallet menu item
This commit is contained in:
parent
61c73e0ae2
commit
0131294b91
1 changed files with 2 additions and 2 deletions
|
@ -376,12 +376,12 @@ var mainMenuStyle = {
|
||||||
var MainMenu = React.createClass({
|
var MainMenu = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
var isLinux = /linux/i.test(navigator.userAgent); // @TODO: find a way to use getVersionInfo() here without messy state management
|
var isLinux = /linux/i.test(navigator.userAgent); // @TODO: find a way to use getVersionInfo() here without messy state management
|
||||||
// @TODO: Need a wallet icon
|
|
||||||
return (
|
return (
|
||||||
<div style={mainMenuStyle}>
|
<div style={mainMenuStyle}>
|
||||||
<Menu {...this.props}>
|
<Menu {...this.props}>
|
||||||
<MenuItem href='/?files' label="My Files" icon='icon-cloud-download' />
|
<MenuItem href='/?files' label="My Files" icon='icon-cloud-download' />
|
||||||
<MenuItem href='/?wallet' label="My Wallet" icon='icon-gear' />
|
<MenuItem href='/?wallet' label="My Wallet" icon='icon-bank' />
|
||||||
<MenuItem href='/?settings' label="Settings" icon='icon-gear' />
|
<MenuItem href='/?settings' label="Settings" icon='icon-gear' />
|
||||||
<MenuItem href='/?help' label="Help" icon='icon-question-circle' />
|
<MenuItem href='/?help' label="Help" icon='icon-question-circle' />
|
||||||
{isLinux ? <MenuItem href="/?start" label="Exit LBRY" icon="icon-close" />
|
{isLinux ? <MenuItem href="/?start" label="Exit LBRY" icon="icon-close" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue