// @flow import { SearchIcon } from "outline-icons"; import * as React from "react"; import { useTranslation } from "react-i18next"; import { useTheme } from "styled-components"; import Input, { type Props as InputProps } from "./Input"; type Props = {| ...InputProps, placeholder?: string, value?: string, onChange: (event: SyntheticInputEvent<>) => mixed, onKeyDown?: (event: SyntheticKeyboardEvent) => mixed, |}; export default function InputSearch(props: Props) { const { t } = useTranslation(); const theme = useTheme(); const [isFocused, setIsFocused] = React.useState(false); const handleFocus = React.useCallback(() => { setIsFocused(true); }, []); const handleBlur = React.useCallback(() => { setIsFocused(false); }, []); const { placeholder = `${t("Search")}…`, onKeyDown, ...rest } = props; return ( } onKeyDown={onKeyDown} onFocus={handleFocus} onBlur={handleBlur} margin={0} labelHidden {...rest} /> ); }