diff --git a/src/components/Chat/Chat.tsx b/src/components/Chat/Chat.tsx
index a96bebe..e8b7bab 100644
--- a/src/components/Chat/Chat.tsx
+++ b/src/components/Chat/Chat.tsx
@@ -266,6 +266,26 @@ const Chat = ({
placeholder = placeholderText;
}
+ const inputArea = (
+
+ );
+
return (
@@ -299,23 +319,13 @@ const Chat = ({
-
+
diff --git a/src/interfaces/IConfig.ts b/src/interfaces/IConfig.ts
index 129201e..ea9a1cb 100644
--- a/src/interfaces/IConfig.ts
+++ b/src/interfaces/IConfig.ts
@@ -19,6 +19,7 @@ export interface ICustomComponents {
botChatMessage?: (props?: any) => ReactElement;
userAvatar?: (props?: any) => ReactElement;
userChatMessage?: (props?: any) => ReactElement;
+ inputMessage?: (props?: any) => ReactElement;
}
export interface ICustomMessage {