import { PaperWallet } from 'components';
import React from 'react';
import printElement from 'utils/printElement';
import { stripHexPrefix } from 'libs/values';
import translate, { translateRaw } from 'translations';
export const print = (address: string, privateKey: string) => () =>
address &&
privateKey &&
printElement(, {
popupFeatures: {
scrollbars: 'no'
},
styles: `
* {
box-sizing: border-box;
}
body {
font-family: Lato, sans-serif;
font-size: 1rem;
line-height: 1.4;
margin: 0;
}
`
});
interface Props {
address: string;
privateKey: string;
}
const PrintableWallet: React.SFC = ({ address, privateKey }) => {
const pkey = stripHexPrefix(privateKey);
return (
);
};
export default PrintableWallet;