import * as React from "react"; import { useTranslation } from "react-i18next"; import { Send } from "lucide-react"; import { Button } from "@/components/ui/button"; export function ChatInput({ disabled, onSend }: { disabled?: boolean; onSend: (text: string) => void }) { const { t } = useTranslation(); const [text, setText] = React.useState(""); return (
); }