import { BiSearchAlt2 } from 'react-icons/bi'; import Overlay from './Overlay'; import TextInput from './TextInput'; interface ConceptSearchProps { value: string onChange?: (newValue: string) => void noBorder?: boolean dimensions?: string } function ConceptSearch({ value, onChange, noBorder, dimensions }: ConceptSearchProps) { return (