mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-04 12:55:13 +00:00
style(wallet): Change import from using single icon export to using ICONS namespace
This commit is contained in:
parent
18ac6fd82d
commit
74a493c8ef
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
// @flow
|
// @flow
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { REMOVE } from 'constants/icons';
|
import * as ICONS from 'constants/icons';
|
||||||
import Button from 'component/button';
|
import Button from 'component/button';
|
||||||
import CopyableText from 'component/copyableText';
|
import CopyableText from 'component/copyableText';
|
||||||
import QRCode from 'component/common/qr-code';
|
import QRCode from 'component/common/qr-code';
|
||||||
|
@ -53,7 +53,7 @@ class WalletAddress extends React.PureComponent<Props, State> {
|
||||||
title={
|
title={
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
{__('Receive Credits')}
|
{__('Receive Credits')}
|
||||||
<Button button="close" icon={REMOVE} onClick={() => history.goBack()} />
|
<Button button="close" icon={ICONS.REMOVE} onClick={() => history.goBack()} />
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
}
|
}
|
||||||
subtitle={__('Use this address to receive LBC.')}
|
subtitle={__('Use this address to receive LBC.')}
|
||||||
|
|
Loading…
Add table
Reference in a new issue