"use client"; import type { SearchBarProps } from "./Search.types"; export default function SearchBar({ value, onChange, onClear, placeholder = "Search...", className = "", }: SearchBarProps) { return (