import { BiSearchAlt2 } from 'react-icons/bi'; import { CProps } from '../props'; import Overlay from './Overlay'; import TextInput from './TextInput'; interface ConceptSearchProps extends CProps.Styling { value: string onChange?: (newValue: string) => void noBorder?: boolean } function ConceptSearch({ value, onChange, noBorder, ...restProps }: ConceptSearchProps) { return (
(onChange ? onChange(event.target.value) : undefined)} />
); } export default ConceptSearch;