Use bank icon for wallet menu item

This commit is contained in:
Jonas Whidden 2016-07-18 21:37:19 -05:00 committed by Alex Liebowitz
parent 61c73e0ae2
commit 0131294b91

View file

@ -376,12 +376,12 @@ var mainMenuStyle = {
var MainMenu = React.createClass({
render: function() {
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 (
<div style={mainMenuStyle}>
<Menu {...this.props}>
<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='/?help' label="Help" icon='icon-question-circle' />
{isLinux ? <MenuItem href="/?start" label="Exit LBRY" icon="icon-close" />