From a000f93698ae379db3eafde7394ec5e4bfc7dc03 Mon Sep 17 00:00:00 2001 From: BorysLevytskyi Date: Tue, 16 May 2023 20:44:57 +0200 Subject: [PATCH] Polish UI --- src/shell/components/InputBox.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)}