Last couple of dangling icons
This commit is contained in:
parent
555e5b24f3
commit
02eeefd73b
@ -21,9 +21,8 @@ import { observer } from 'mobx-react';
|
||||
import IconMenu from 'material-ui/IconMenu';
|
||||
import MenuItem from 'material-ui/MenuItem';
|
||||
|
||||
import SortIcon from 'material-ui/svg-icons/content/sort';
|
||||
|
||||
import Button from '../../Button';
|
||||
import { SortIcon } from '../../Icons';
|
||||
|
||||
import SortStore from './sortStore';
|
||||
import styles from './sort.css';
|
||||
|
@ -20,8 +20,6 @@ import { range } from 'lodash';
|
||||
import BigNumber from 'bignumber.js';
|
||||
|
||||
import IconButton from 'material-ui/IconButton';
|
||||
import AddIcon from 'material-ui/svg-icons/content/add';
|
||||
import RemoveIcon from 'material-ui/svg-icons/content/remove';
|
||||
|
||||
import { fromWei, toWei } from '@parity/api/util/wei';
|
||||
import { bytesToHex } from '@parity/api/util/format';
|
||||
@ -29,6 +27,7 @@ import { bytesToHex } from '@parity/api/util/format';
|
||||
import Input from '~/ui/Form/Input';
|
||||
import InputAddressSelect from '~/ui/Form/InputAddressSelect';
|
||||
import Select from '~/ui/Form/Select';
|
||||
import { AddIcon, RemoveIcon } from '~/ui/Icons';
|
||||
import { ABI_TYPES, parseAbiType } from '~/util/abi';
|
||||
import { nodeOrStringProptype } from '~/util/proptypes';
|
||||
|
||||
|
@ -56,6 +56,7 @@ export PlayIcon from 'material-ui/svg-icons/av/play-arrow';
|
||||
export PrevIcon from 'material-ui/svg-icons/navigation/arrow-back';
|
||||
export PrintIcon from 'material-ui/svg-icons/action/print';
|
||||
export RefreshIcon from 'material-ui/svg-icons/action/autorenew';
|
||||
export RemoveIcon from 'material-ui/svg-icons/content/remove';
|
||||
export ReorderIcon from 'material-ui/svg-icons/action/reorder';
|
||||
export ReplayIcon from 'material-ui/svg-icons/av/replay';
|
||||
export SaveIcon from 'material-ui/svg-icons/content/save';
|
||||
@ -63,6 +64,7 @@ export SearchIcon from 'material-ui/svg-icons/action/search';
|
||||
export SendIcon from 'material-ui/svg-icons/content/send';
|
||||
export SettingsIcon from 'material-ui/svg-icons/action/settings';
|
||||
export SnoozeIcon from 'material-ui/svg-icons/av/snooze';
|
||||
export SortIcon from 'material-ui/svg-icons/content/sort';
|
||||
export StarCircleIcon from 'material-ui/svg-icons/action/stars';
|
||||
export StarIcon from 'material-ui/svg-icons/toggle/star';
|
||||
export StarOutlineIcon from 'material-ui/svg-icons/toggle/star-border';
|
||||
|
@ -17,9 +17,9 @@
|
||||
import React, { Component, PropTypes } from 'react';
|
||||
import { connect } from 'react-redux';
|
||||
import { keccak_256 } from 'js-sha3'; // eslint-disable-line camelcase
|
||||
import ActionFingerprint from 'material-ui/svg-icons/action/fingerprint';
|
||||
|
||||
import IdentityIcon from '../IdentityIcon';
|
||||
import { FingerprintIcon } from '../Icons';
|
||||
|
||||
class SignerIcon extends Component {
|
||||
static propTypes = {
|
||||
@ -32,7 +32,7 @@ class SignerIcon extends Component {
|
||||
|
||||
if (!secureToken) {
|
||||
return (
|
||||
<ActionFingerprint />
|
||||
<FingerprintIcon />
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user