mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-10 15:02:07 +01:00
Polish UI
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import log from 'loglevel';
|
import log from 'loglevel';
|
||||||
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
||||||
|
import { faAngleRight } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
|
||||||
export interface IInputBoxProps
|
export interface IInputBoxProps
|
||||||
{
|
{
|
||||||
@@ -25,7 +27,7 @@ export default class InputBox extends React.Component<IInputBoxProps> {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return <React.Fragment>
|
return <React.Fragment>
|
||||||
<span className='input-p'>></span>
|
<span className='input-p'><FontAwesomeIcon icon={faAngleRight} /></span>
|
||||||
<input id="in" type="text"
|
<input id="in" type="text"
|
||||||
ref={(input) => { this.nameInput = input; }}
|
ref={(input) => { this.nameInput = input; }}
|
||||||
onKeyUp={e => this.onKeyUp(e)}
|
onKeyUp={e => this.onKeyUp(e)}
|
||||||
|
|||||||
Reference in New Issue
Block a user