Add styles for InputBox

This commit is contained in:
He4eT 2021-02-28 18:41:09 +05:00
commit fce8be2af0
4 changed files with 10 additions and 4 deletions

View file

@ -81,7 +81,8 @@ export default function ({ currentWindow, inputType, sendMessage }) {
value={inputText}
placeholder={placeholder[inputType]}
autofocus
autocomplete="off"
onInput={({ target: { value } }) => setInputText(value)}
type='text' />
type='search' />
)
}