diff --git a/src/components/modals/external/NemWallet/components/NemImage/index.js b/src/components/modals/external/NemWallet/components/NemImage/index.js deleted file mode 100644 index 2306c435..00000000 --- a/src/components/modals/external/NemWallet/components/NemImage/index.js +++ /dev/null @@ -1,15 +0,0 @@ -/* @flow */ - -import React from 'react'; -import styled from 'styled-components'; -import DownloadImg from './images/nem-download.png'; - -const Img = styled.img` - display: block; - width: 100%; - height: auto; -`; - -const NemImage = () => ; - -export default NemImage; diff --git a/src/components/modals/external/NemWallet/components/NemImage/images/nem-download.png b/src/components/modals/external/NemWallet/images/nem-download.png similarity index 100% rename from src/components/modals/external/NemWallet/components/NemImage/images/nem-download.png rename to src/components/modals/external/NemWallet/images/nem-download.png diff --git a/src/components/modals/external/NemWallet/index.js b/src/components/modals/external/NemWallet/index.js index 8e2fcc53..4835d79c 100644 --- a/src/components/modals/external/NemWallet/index.js +++ b/src/components/modals/external/NemWallet/index.js @@ -13,7 +13,7 @@ import Button from 'components/Button'; import { H3, H4 } from 'components/Heading'; import P from 'components/Paragraph'; -import NemImage from './components/NemImage'; +import NemImage from './images/nem-download.png'; import type { Props as BaseProps } from '../../Container'; type Props = { @@ -37,6 +37,12 @@ const StyledLink = styled(Link)` top: 10px; `; +const Img = styled.img` + display: block; + width: 100%; + height: auto; +`; + const NemWallet = (props: Props) => ( @@ -49,7 +55,7 @@ const NemWallet = (props: Props) => (

NEM Wallet

We have partnered up with the NEM Foundation to provide you with a full-fledged NEM Wallet.

Make sure you download the Universal Client for TREZOR support.

- + Go to nem.io
);