import { MagnifyingGlassIcon } from '@heroicons/react/24/outline'; import { ChangeEvent } from 'react'; type SearchInputProps = { label: string; id: string; name: string; type: 'text' | 'number'; placeholder: string; value: string; onChange: (value: string) => void; onClick: () => void; buttonLabel: string; }; const SearchInput: React.FC = ({ label, id, name, type, placeholder, value, onChange, onClick, }) => { const handleKeyDown = (e: React.KeyboardEvent) => { if (e.key === 'Enter') { onClick(); } }; return (
) => onChange(e.target.value) } onKeyDown={handleKeyDown} placeholder={placeholder} type={type} value={value} />
); }; export default SearchInput;