import { Send, StopCircle } from "lucide-react" import { Button } from "../../ui/button" 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 (