diff --git a/package.json b/package.json index 12bcdfedd..a8489622b 100644 --- a/package.json +++ b/package.json @@ -94,6 +94,7 @@ "copy-webpack-plugin": "^4.6.0", "country-data": "^0.0.31", "cross-env": "^5.2.0", + "crypto-js": "^4.0.0", "css-doodle": "^0.7.1", "css-loader": "^2.1.0", "cssnano": "^4.1.10", diff --git a/ui/component/common/icon-custom.jsx b/ui/component/common/icon-custom.jsx index a1da0dc19..e16c57221 100644 --- a/ui/component/common/icon-custom.jsx +++ b/ui/component/common/icon-custom.jsx @@ -638,7 +638,26 @@ export const icons = { - {' '} + + + ), + [ICONS.BUY]: buildIcon( + + + + + + ), + [ICONS.SEND]: buildIcon( + + + + + ), + [ICONS.RECEIVE]: buildIcon( + + + ), }; diff --git a/ui/component/page/view.jsx b/ui/component/page/view.jsx index 998ded845..a887bb5f2 100644 --- a/ui/component/page/view.jsx +++ b/ui/component/page/view.jsx @@ -15,17 +15,18 @@ type Props = { authPage: boolean, noHeader: boolean, noFooter: boolean, + noSideNavigation: boolean, }; function Page(props: Props) { - const { children, className, authPage = false, noHeader, noFooter } = props; + const { children, className, authPage = false, noHeader = false, noFooter = false, noSideNavigation = false } = props; return ( {!noHeader &&
}
{children}
- {!authPage && !noHeader && } + {!authPage && !noSideNavigation && }
{/* @if TARGET='web' */} {!noFooter &&