mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-24 15:00:58 +00:00
Revert "change icon for "change wallet type" btn"
This reverts commit d876fe4ebd
.
This commit is contained in:
parent
d876fe4ebd
commit
91f8fafeac
@ -13,7 +13,6 @@ type Props = {
|
|||||||
size?: number,
|
size?: number,
|
||||||
isActive?: boolean,
|
isActive?: boolean,
|
||||||
color?: string,
|
color?: string,
|
||||||
viewBox?: string,
|
|
||||||
onMouseEnter?: () => void,
|
onMouseEnter?: () => void,
|
||||||
onMouseLeave?: () => void,
|
onMouseLeave?: () => void,
|
||||||
onFocus?: () => void,
|
onFocus?: () => void,
|
||||||
@ -67,7 +66,6 @@ const Icon = ({
|
|||||||
icon,
|
icon,
|
||||||
size = 32,
|
size = 32,
|
||||||
color = colors.TEXT_SECONDARY,
|
color = colors.TEXT_SECONDARY,
|
||||||
viewBox = '0 0 1024 1024',
|
|
||||||
isActive,
|
isActive,
|
||||||
canAnimate,
|
canAnimate,
|
||||||
hoverColor,
|
hoverColor,
|
||||||
@ -88,7 +86,7 @@ const Icon = ({
|
|||||||
}}
|
}}
|
||||||
width={`${size}`}
|
width={`${size}`}
|
||||||
height={`${size}`}
|
height={`${size}`}
|
||||||
viewBox={viewBox}
|
viewBox="0 0 1024 1024"
|
||||||
onMouseEnter={onMouseEnter}
|
onMouseEnter={onMouseEnter}
|
||||||
onMouseLeave={onMouseLeave}
|
onMouseLeave={onMouseLeave}
|
||||||
onFocus={onFocus}
|
onFocus={onFocus}
|
||||||
@ -113,7 +111,6 @@ Icon.propTypes = {
|
|||||||
size: PropTypes.number,
|
size: PropTypes.number,
|
||||||
isActive: PropTypes.bool,
|
isActive: PropTypes.bool,
|
||||||
color: PropTypes.string,
|
color: PropTypes.string,
|
||||||
viewBox: PropTypes.string,
|
|
||||||
onMouseEnter: PropTypes.func,
|
onMouseEnter: PropTypes.func,
|
||||||
onMouseLeave: PropTypes.func,
|
onMouseLeave: PropTypes.func,
|
||||||
onFocus: PropTypes.func,
|
onFocus: PropTypes.func,
|
||||||
|
@ -60,9 +60,8 @@ class MenuItems extends PureComponent {
|
|||||||
{this.showClone() && (
|
{this.showClone() && (
|
||||||
<Item onClick={() => this.props.duplicateDevice(device)}>
|
<Item onClick={() => this.props.duplicateDevice(device)}>
|
||||||
<Icon
|
<Icon
|
||||||
icon={icons.WALLET_STANDARD}
|
icon={icons.T1}
|
||||||
size={25}
|
size={25}
|
||||||
viewBox="0 0 32 32"
|
|
||||||
color={colors.TEXT_SECONDARY}
|
color={colors.TEXT_SECONDARY}
|
||||||
/>
|
/>
|
||||||
<Label>Change wallet type</Label>
|
<Label>Change wallet type</Label>
|
||||||
|
Loading…
Reference in New Issue
Block a user