import React, { PureComponent } from 'react'; import translate from 'translations'; import QRCode from 'qrcode.react'; import './BitcoinQR.scss'; interface Props { paymentAddress: string | null; destinationAmount: number; } export default class BitcoinQR extends PureComponent { public render() { const { paymentAddress, destinationAmount } = this.props; return (

{translate('SWAP_TIME_LIMIT_WARNING')}

{translate('SWAP_RECOMMENDED_TX_FEES', { $link: 'https://shapeshift.io/#/btcfee' })}
); } }