import { ArrowUp } from "lucide-react"; import { Input as ShadcnInput } from "./ui/input"; interface InputProps { input: string; handleInputChange: (event: React.ChangeEvent) => void; isLoading: boolean; status: string; stop: () => void; } export const Input = ({ input, handleInputChange, isLoading, status, stop, }: InputProps) => { return (
{status === "streaming" || status === "submitted" ? ( ) : ( )}
); };