wallet icon was bad

This commit is contained in:
zeppi 2022-04-15 15:17:26 -04:00
parent 54126c7af2
commit 4cef45f5c9
3 changed files with 1 additions and 8 deletions

View file

@ -285,12 +285,6 @@ export const icons = {
<line x1="1" y1="10" x2="23" y2="10" /> <line x1="1" y1="10" x2="23" y2="10" />
</g> </g>
), ),
[ICONS.WALLET2]: buildIcon(
<g>
<path d="M1 4c0 1 1 2 2 2h17M1 4c0-1 1-2 2-2h15c1 0 2 1 2 2v2M1 4v16c0 1 1 2 2 2h18c1 0 2-1 2-2V8c0-1-1-2-2-2h-1" />
<path d="m14 11 2 2v2l-4 4-4-4v-2l4-4 2 2Zm0 0-3 3M9 16l3-3" />
</g>
),
[ICONS.COIN_SWAP]: buildIcon( [ICONS.COIN_SWAP]: buildIcon(
<g> <g>
<path d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" /> <path d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" />

View file

@ -135,7 +135,7 @@ const Header = (props: Props) => {
navigate={`/$/${PAGES.WALLET}`} navigate={`/$/${PAGES.WALLET}`}
className="header__navigationItem--icon header__navigationItem--balance" className="header__navigationItem--icon header__navigationItem--balance"
label={!(hideBalance || Number(roundedBalance) === 0) && roundedBalance} label={!(hideBalance || Number(roundedBalance) === 0) && roundedBalance}
icon={ICONS.WALLET2} icon={ICONS.LBC}
iconSize={18} iconSize={18}
onDoubleClick={(e) => { onDoubleClick={(e) => {
e.stopPropagation(); e.stopPropagation();

View file

@ -186,4 +186,3 @@ export const MYSTERIES = 'Mysteries';
export const TECHNOLOGY = 'Technology'; export const TECHNOLOGY = 'Technology';
export const EMOJI = 'Emoji'; export const EMOJI = 'Emoji';
export const STICKER = 'Sticker'; export const STICKER = 'Sticker';
export const WALLET2 = 'Wallet2';