Spaces:
Runtime error
Runtime error
File size: 1,671 Bytes
56b6519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
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<SearchInputProps> = ({
label,
id,
name,
type,
placeholder,
value,
onChange,
onClick,
}) => {
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key === 'Enter') {
onClick();
}
};
return (
<div>
<label
className="block text-sm font-medium leading-6 text-gray-300"
htmlFor={id}
>
{label}
</label>
<div className="relative mt-2 flex rounded-md shadow-sm">
<input
className="block w-full rounded-md border-0 py-1.5 pl-7 pr-20 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
id={id}
name={name}
onChange={(e: ChangeEvent<HTMLInputElement>) =>
onChange(e.target.value)
}
onKeyDown={handleKeyDown}
placeholder={placeholder}
type={type}
value={value}
/>
<button
className="absolute inset-y-0 right-0 flex items-center pl-3 pr-3 bg-gray-300 rounded-r-md"
onClick={onClick}
type="button"
>
<MagnifyingGlassIcon className="py-1 size-10 text-gray-700" />
</button>
</div>
</div>
);
};
export default SearchInput;
|