mirror of
https://github.com/trezor/trezor-wallet
synced 2025-03-21 02:26:13 +00:00
add tuc to sign n verify
This commit is contained in:
parent
a5475c5c73
commit
89eab32c2c
@ -1,10 +1,8 @@
|
||||
/* @flow */
|
||||
import React, { Component } from 'react';
|
||||
import styled from 'styled-components';
|
||||
import Input from 'components/inputs/Input';
|
||||
import Textarea from 'components/Textarea';
|
||||
import { Input, TextArea, Button } from 'trezor-ui-components';
|
||||
import Title from 'views/Wallet/components/Title';
|
||||
import Button from 'components/Button';
|
||||
import Content from 'views/Wallet/components/Content';
|
||||
import colors from 'config/colors';
|
||||
import { SCREEN_SIZE } from 'config/variables';
|
||||
@ -116,7 +114,7 @@ class SignVerify extends Component<Props> {
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
<Textarea
|
||||
<TextArea
|
||||
topLabel={this.props.intl.formatMessage(l10nMessages.TR_MESSAGE)}
|
||||
name="signMessage"
|
||||
value={signMessage}
|
||||
@ -127,7 +125,7 @@ class SignVerify extends Component<Props> {
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
<Textarea
|
||||
<TextArea
|
||||
topLabel={this.props.intl.formatMessage(l10nMessages.TR_SIGNATURE)}
|
||||
name="signSignature"
|
||||
value={signSignature}
|
||||
@ -170,7 +168,7 @@ class SignVerify extends Component<Props> {
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
<Textarea
|
||||
<TextArea
|
||||
topLabel={this.props.intl.formatMessage(l10nMessages.TR_MESSAGE)}
|
||||
name="verifyMessage"
|
||||
value={verifyMessage}
|
||||
@ -181,7 +179,7 @@ class SignVerify extends Component<Props> {
|
||||
/>
|
||||
</Row>
|
||||
<Row>
|
||||
<Textarea
|
||||
<TextArea
|
||||
topLabel={this.props.intl.formatMessage(l10nMessages.TR_SIGNATURE)}
|
||||
autoSelect
|
||||
name="verifySignature"
|
||||
|
Loading…
Reference in New Issue
Block a user