diff --git a/src/shell/components/InputBox.tsx b/src/shell/components/InputBox.tsx index 25af7ca..8d2b7a5 100644 --- a/src/shell/components/InputBox.tsx +++ b/src/shell/components/InputBox.tsx @@ -1,5 +1,7 @@ import React from 'react'; import log from 'loglevel'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; export interface IInputBoxProps { @@ -25,7 +27,7 @@ export default class InputBox extends React.Component { render() { return - > + { this.nameInput = input; }} onKeyUp={e => this.onKeyUp(e)}