import React from 'react'; import { useState } from "react"; import { Button } from "../common/index"; export default function InputBox({ onSend, loading }) { const [text, setText] = useState(""); const handleSend = () => { if (!text.trim() || loading) return; onSend(text.trim()); setText(""); }; return (