import { Button } from "@/app/components/ui/button"; import { Input } from "@/app/components/ui/input"; import { ChatHandler } from "@/app/components/ui/chat/chat.interface"; import { IconSpinner } from "@/app/components/ui/icons"; import { Send } from "lucide-react"; export default function ChatInput( props: Pick< ChatHandler, "isLoading" | "handleSubmit" | "handleInputChange" | "input" >, ) { return (
); }