18 lines
517 B
JavaScript
18 lines
517 B
JavaScript
import AutoCompleteSearch from "@/components/searchHead/smSearch/AutoCompleteSearch";
|
|
import specialties from "@/data/specialties.json";
|
|
|
|
function SearchField({ filter, updateData }) {
|
|
return (
|
|
<div className="!min-w-[50%] !w-[524px]">
|
|
<AutoCompleteSearch
|
|
data={specialties}
|
|
inputValue={filter.name}
|
|
handleSearch={(e) => updateData("name", e)}
|
|
placeholder="جستجوی نام پزشک، تخصص، بیماری ..."
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SearchField;
|