From 716629f6fe90a29ee6024693429a0f62db297c7a Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:48:23 +0530 Subject: [PATCH] feat(emptyChatInput): update UI --- src/components/EmptyChatMessageInput.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/EmptyChatMessageInput.tsx b/src/components/EmptyChatMessageInput.tsx index 0ce74c8..85acd0b 100644 --- a/src/components/EmptyChatMessageInput.tsx +++ b/src/components/EmptyChatMessageInput.tsx @@ -5,6 +5,8 @@ import Focus from './MessageInputActions/Focus'; import Optimization from './MessageInputActions/Optimization'; import Attach from './MessageInputActions/Attach'; import { useChat } from '@/lib/hooks/useChat'; +import AttachSmall from './MessageInputActions/AttachSmall'; +import ModelSelector from './MessageInputActions/ModelSelector'; const EmptyChatMessageInput = () => { const { sendMessage } = useChat(); @@ -54,13 +56,13 @@ const EmptyChatMessageInput = () => { }} className="w-full" > -
+
setMessage(e.target.value)} minRows={2} - className="bg-transparent placeholder:text-black/50 dark:placeholder:text-white/50 text-sm text-black dark:text-white resize-none focus:outline-none w-full max-h-24 lg:max-h-36 xl:max-h-48" + className="px-2 bg-transparent placeholder:text-[15px] placeholder:text-black/50 dark:placeholder:text-white/50 text-sm text-black dark:text-white resize-none focus:outline-none w-full max-h-24 lg:max-h-36 xl:max-h-48" placeholder="Ask anything..." />
@@ -72,7 +74,7 @@ const EmptyChatMessageInput = () => {