1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 21:08:57 +00:00

Rename element

This commit is contained in:
Vasek Mlejnsky 2018-09-04 14:52:02 +02:00
parent 97eb972ca0
commit 01504cc2f9

View File

@ -79,7 +79,7 @@ const AddressInfoText = styled.div`
margin: 0px 2px; margin: 0px 2px;
`; `;
const StyledButton = styled(Button)` const ShowAddressButton = styled(Button)`
border-top-left-radius: 0; border-top-left-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
`; `;
@ -180,7 +180,7 @@ const AccountReceive = (props: Props) => {
/> />
)} )}
{!(addressVerified || addressUnverified) && ( {!(addressVerified || addressUnverified) && (
<StyledButton <ShowAddressButton
onClick={() => props.showAddress(account.addressPath)} onClick={() => props.showAddress(account.addressPath)}
isDisabled={device.connected && !discovery.completed} isDisabled={device.connected && !discovery.completed}
icon={{ icon={{
@ -189,7 +189,7 @@ const AccountReceive = (props: Props) => {
size: 25, size: 25,
}} }}
>Show full address >Show full address
</StyledButton> </ShowAddressButton>
)} )}
</AddressWrapper> </AddressWrapper>
</Wrapper> </Wrapper>