import * as React from 'react'; import { TextInput, inputType } from '../../core'; import './search.scss'; export interface ISearchInputProps { id: string; value: string; onChange?: (event: any) => void; disabled?: boolean; placeholder?: string; title?: string; shouldShowSearchText?: boolean; } export const SearchInput = (props: ISearchInputProps) => { const { id, value, onChange, disabled, placeholder, title, shouldShowSearchText = false } = props; return (