38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import React, { useState } from 'react'
|
|
import { MagnifyingGlassIcon } from '@heroicons/react/24/outline'
|
|
|
|
interface SearchBarProps {
|
|
onSearch: (query: string) => void
|
|
}
|
|
|
|
function SearchBar({ onSearch }: SearchBarProps) {
|
|
const [query, setQuery] = useState('')
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
onSearch(query)
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} className="relative">
|
|
<div className="relative">
|
|
<MagnifyingGlassIcon className="absolute left-3 top-1/2 transform -translate-y-1/2 h-5 w-5 text-gray-400" />
|
|
<input
|
|
type="text"
|
|
placeholder="Search documents..."
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
className="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="absolute right-2 top-1/2 transform -translate-y-1/2 bg-blue-600 text-white px-4 py-1 rounded text-sm hover:bg-blue-700"
|
|
>
|
|
Search
|
|
</button>
|
|
</form>
|
|
)
|
|
}
|
|
|
|
export default SearchBar |