import SearchIcon from '@mui/icons-material/Search'; import { FormControl, InputAdornment } from '@mui/material'; import { useEffect } from 'react'; import { useTranslation } from 'react-i18next'; import { Card } from '../../components/Card'; import { useFieldActions, useFieldController } from '../../stores'; import { Input } from './SearchTokenInput.style'; export const SearchTokenInput = () => { const { t } = useTranslation(); const { setFieldValue } = useFieldActions(); const { onChange, onBlur, name, value } = useFieldController({ name: 'tokenSearchFilter', }); useEffect( () => () => { setFieldValue('tokenSearchFilter', ''); }, [setFieldValue], ); return ( } inputProps={{ inputMode: 'search', onChange: (e) => onChange((e.target as HTMLInputElement).value), onBlur, name, value, }} autoComplete="off" /> ); };