import { Send } from 'lucide-react'; export default function InputArea({ value, onChange, onSend, isProcessing }) { const handleKeyDown = (e) => { if (e.key === 'Enter' && !e.shiftKey) { e.preventDefault(); onSend(); } }; return (