woedii/app/marketplace/artists/_components/SearchBar.tsx

21 lines
911 B
TypeScript
Raw Permalink Normal View History

2025-04-28 00:47:36 +00:00
import { Input } from '@/components/ui/input';
import { Search } from 'lucide-react';
export default function SearchBar() {
return (
<div className="flex justify-center w-full my-6 px-4">
<div className="flex items-center bg-white rounded-xl shadow-md px-4 w-full max-w-[613px] h-[50px]">
2025-04-28 00:47:36 +00:00
<select className="bg-transparent outline-none text-gray-700 font-medium pr-2 h-full">
<option className="text-[14px] font-400">All</option>
</select>
<span className="mx-2 text-gray-300">|</span>
<Search className="w-5 h-5 text-gray-400 mr-2" />
<Input
type="text"
className="flex-1 bg-transparent outline-none text-gray-700 placeholder-gray-400 border-0 shadow-none focus-visible:ring-0 focus-visible:ring-offset-0 h-full"
placeholder="Search images, videos, fonts, graphics and more"
/>
</div>
</div>
);
}