+
+
+
+
+ n && n.focus()}
+ autoFocus
+ simpleValue
+ multi={false}
+ clearable={false}
+ multi={false}
+ filterOptions={false}
+ valueKey="word"
+ labelKey="word"
+ loadOptions={getSeedWords}
+ onChange={onWordChanged}
+ value={this.state.value}
+ placeholder={}
+ onInputKeyDown={onSelectKeyDown}
+ />
+
+
+
+
+ );
+ }
+}
+
+export default WordModal;
diff --git a/app/components/views/TrezorPage/ChangeLabel.js b/app/components/views/TrezorPage/ChangeLabel.js
new file mode 100644
index 0000000000..99c628f9ca
--- /dev/null
+++ b/app/components/views/TrezorPage/ChangeLabel.js
@@ -0,0 +1,57 @@
+import { VerticalAccordion } from "shared";
+import { FormattedMessage as T } from "react-intl";
+import { TextInput } from "inputs";
+import { KeyBlueButton } from "buttons";
+
+@autobind
+class ChangeLabel extends React.Component {
+ constructor(props) {
+ super(props);
+ this.state = { newLabel: "" };
+ }
+
+ onChangeLabelClicked() {
+ this.props.onChangeLabel(this.state.newLabel);
+ }
+
+ onNewLabelChanged(e) {
+ this.setState({ newLabel: e.target.value });
+ }
+
+ render() {
+
+ const changeLabelHeader = (
+