import Icon from "@/components/Icon"; import Textarea from "@mui/joy/Textarea/Textarea"; import { useTranslation } from "react-i18next"; interface Props { question: string; handleQuestionTextareaChange: any; setIsInIME: any; handleKeyDown: any; handleSendQuestionButtonClick: any; } const ChatInput = ({ question, handleQuestionTextareaChange, setIsInIME, handleKeyDown, handleSendQuestionButtonClick }: Props) => { const { t } = useTranslation(); return (