import React from "react"; import styled from "styled-components"; import { InputGroup } from "@blueprintjs/core"; interface SearchProps { onSearch: (value: any) => void; placeholder: string; value: string; } const SearchInputWrapper = styled(InputGroup)` &&& input { box-shadow: none; } &&& svg { opacity: 0.6; } margin: 14px 20px; width: 250px; `; const SearchComponent = (props: SearchProps) => { const [value, setValue] = React.useState(props.value); const handleSearch = ( event: | React.ChangeEvent | React.ChangeEvent, ) => { const search = event.target.value; setValue(search); props.onSearch(search); }; return ( ); }; export default SearchComponent;