import React from 'react'; import { Button } from '../../ui/button'; import { Send, StopCircle } from 'lucide-react'; interface ChatInputProps { input: string; setInput: (input: string) => void; isGenerating: boolean; handleSend: () => void; handleStopGeneration: () => void; } export default function ChatInput({ input, setInput, isGenerating, handleSend, handleStopGeneration }: ChatInputProps) { return (