"use client"; interface ConversationSearchProps { value: string; onChange: (value: string) => void; } export function ConversationSearch({ value, onChange, }: ConversationSearchProps) { return (
onChange(event.target.value)} className="w-full px-3 py-2 pl-9 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-400 text-sm" />
); }