aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/etherscan_icon.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-20 04:26:34 +0800
committerGitHub <noreply@github.com>2017-12-20 04:26:34 +0800
commitc39ac903a972930d538f8fa3292c658201b1c5e5 (patch)
tree601833585d62dea776eff036520028c78917dbd2 /packages/website/ts/components/ui/etherscan_icon.tsx
parent1316a2dd2a8971771f750d8a7f457212daad520b (diff)
parent8a940a800aa6f042f7932df6de83148c3cc3f268 (diff)
downloaddexon-sol-tools-c39ac903a972930d538f8fa3292c658201b1c5e5.tar.gz
dexon-sol-tools-c39ac903a972930d538f8fa3292c658201b1c5e5.tar.zst
dexon-sol-tools-c39ac903a972930d538f8fa3292c658201b1c5e5.zip
Merge pull request #275 from 0xProject/refactor/website
Refactor Website
Diffstat (limited to 'packages/website/ts/components/ui/etherscan_icon.tsx')
-rw-r--r--packages/website/ts/components/ui/etherscan_icon.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/components/ui/etherscan_icon.tsx b/packages/website/ts/components/ui/etherscan_icon.tsx
index 9b4d172f1..111d5d478 100644
--- a/packages/website/ts/components/ui/etherscan_icon.tsx
+++ b/packages/website/ts/components/ui/etherscan_icon.tsx
@@ -1,8 +1,8 @@
import * as _ from 'lodash';
-import {colors} from 'material-ui/styles';
import * as React from 'react';
import ReactTooltip = require('react-tooltip');
import {EtherscanLinkSuffixes} from 'ts/types';
+import {colors} from 'ts/utils/colors';
import {utils} from 'ts/utils/utils';
interface EtherScanIconProps {
@@ -13,7 +13,7 @@ interface EtherScanIconProps {
export const EtherScanIcon = (props: EtherScanIconProps) => {
const etherscanLinkIfExists = utils.getEtherScanLinkIfExists(
- props.addressOrTxHash, props.networkId, EtherscanLinkSuffixes.address,
+ props.addressOrTxHash, props.networkId, EtherscanLinkSuffixes.Address,
);
const transactionTooltipId = `${props.addressOrTxHash}-etherscan-icon-tooltip`;
return (