diff --git a/src/components/DeviceHeader/index.js b/src/components/DeviceHeader/index.js index d54e8ba2..2bf43108 100644 --- a/src/components/DeviceHeader/index.js +++ b/src/components/DeviceHeader/index.js @@ -10,7 +10,7 @@ import { getStatus, getVersion, } from 'utils/device'; -import TrezorImage from 'components/TrezorImage'; +import TrezorImage from 'components/images/TrezorImage'; import colors from 'config/colors'; const Wrapper = styled.div` diff --git a/src/components/CoinLogo/index.js b/src/components/images/CoinLogo/index.js similarity index 100% rename from src/components/CoinLogo/index.js rename to src/components/images/CoinLogo/index.js diff --git a/src/components/TrezorImage/images/trezor-1.png b/src/components/images/TrezorImage/images/trezor-1.png similarity index 100% rename from src/components/TrezorImage/images/trezor-1.png rename to src/components/images/TrezorImage/images/trezor-1.png diff --git a/src/components/TrezorImage/images/trezor-T.png b/src/components/images/TrezorImage/images/trezor-T.png similarity index 100% rename from src/components/TrezorImage/images/trezor-T.png rename to src/components/images/TrezorImage/images/trezor-T.png diff --git a/src/components/TrezorImage/index.js b/src/components/images/TrezorImage/index.js similarity index 100% rename from src/components/TrezorImage/index.js rename to src/components/images/TrezorImage/index.js diff --git a/src/views/Wallet/components/LeftNavigation/components/RowCoin/index.js b/src/views/Wallet/components/LeftNavigation/components/RowCoin/index.js index 96f302b4..6d704c3d 100644 --- a/src/views/Wallet/components/LeftNavigation/components/RowCoin/index.js +++ b/src/views/Wallet/components/LeftNavigation/components/RowCoin/index.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import Icon from 'components/Icon'; -import CoinLogo from 'components/CoinLogo'; +import CoinLogo from 'components/images/CoinLogo'; import { FONT_SIZE, LEFT_NAVIGATION_ROW } from 'config/variables'; import colors from 'config/colors'; import Row from '../Row'; diff --git a/src/views/Wallet/views/AccountSummary/index.js b/src/views/Wallet/views/AccountSummary/index.js index 1715b572..964d39f9 100644 --- a/src/views/Wallet/views/AccountSummary/index.js +++ b/src/views/Wallet/views/AccountSummary/index.js @@ -10,7 +10,7 @@ import ICONS from 'config/icons'; import colors from 'config/colors'; import Tooltip from 'rc-tooltip'; -import CoinLogo from 'components/CoinLogo'; +import CoinLogo from 'components/images/CoinLogo'; import * as stateUtils from 'reducers/utils'; import SelectedAccount from 'views/Wallet/components/SelectedAccount'; import Link from 'components/Link';