"use client"; import { Input } from "@/components/ui/input"; interface ConversationSearchProps { value: string; onChange: (value: string) => void; } export function ConversationSearch({ value, onChange, }: ConversationSearchProps) { return (