import styles from './SearchField.module.scss' import { Icon } from './Icon' import { t } from '../../utils/intl' type SearchFieldProps = { onChange: (value: string) => void } export const SearchField = (props: SearchFieldProps) => { const handleInputChange = (event) => props.onChange(event.target.value) return (