From 65558df1f7a45ff11f9d052cb2a73b5496058eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20B=C3=A4uerle?= Date: Thu, 25 Apr 2024 14:24:05 -0700 Subject: [PATCH] feat(frontend): multiple design changes (#1370) --- frontend/src/components/ChatInput.tsx | 18 ++++---- frontend/src/components/ChatInterface.tsx | 45 +++++++++---------- frontend/src/components/CodeEditor.tsx | 4 +- frontend/src/components/Workspace.tsx | 5 +-- .../components/file-explorer/FileExplorer.tsx | 6 +-- .../modals/base-modal/BaseModal.tsx | 4 +- .../LoadPreviousSessionModal.tsx | 14 +++--- .../modals/settings/SettingsModal.tsx | 18 ++++---- frontend/src/i18n/translation.json | 24 +++++----- 9 files changed, 69 insertions(+), 69 deletions(-) diff --git a/frontend/src/components/ChatInput.tsx b/frontend/src/components/ChatInput.tsx index 82a554668e..bf7031e90e 100644 --- a/frontend/src/components/ChatInput.tsx +++ b/frontend/src/components/ChatInput.tsx @@ -1,8 +1,8 @@ import { Textarea } from "@nextui-org/react"; import React from "react"; import { useTranslation } from "react-i18next"; +import { VscArrowUp } from "react-icons/vsc"; import { twMerge } from "tailwind-merge"; -import { VscSend } from "react-icons/vsc"; import { I18nKey } from "#/i18n/declaration"; interface ChatInputProps { @@ -32,7 +32,7 @@ function ChatInput({ disabled, onSendMessage }: ChatInputProps) { }; return ( -
+