import PrintableWallet from 'components/PrintableWallet'; import { IFullWallet } from 'ethereumjs-wallet'; import { NewTabLink } from 'components/ui'; import React from 'react'; import { Link } from 'react-router-dom'; import translate from 'translations'; import { stripHexPrefix } from 'libs/values'; import './PaperWallet.scss'; import Template from './Template'; const content = (wallet: IFullWallet) => (
{/* Private Key */}

{translate('GEN_Label_5')}

{/* Download Paper Wallet */}

{translate('x_Print')}

{/* Warning */}

Do not lose it! It cannot be recovered if you lose it.

Do not share it! Your funds will be stolen if you use this file on a malicious/phishing site.

Make a backup! Secure it like the millions of dollars it may one day be worth.

{/* Continue button */} {translate('NAV_ViewWallet')} →
); const help = (

{translate('GEN_Help_4')}

{translate('GEN_Help_17')}

{translate('x_PrintDesc')}

); const PaperWallet: React.SFC<{ wallet: IFullWallet; }> = ({ wallet }) =>