"use client"; import { Input } from "@/components/ui/input"; interface ConversationSearchProps { value: string; onChange: (value: string) => void; } export function ConversationSearch({ value, onChange, }: ConversationSearchProps) { return (
onChange(event.target.value)} className="w-full pl-9" />
); }