Skip to content

Commit a1ec630

Browse files
committed
use new send button for chat input
1 parent d444b2b commit a1ec630

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/Chat/ChatField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const ChatField = ({ className, onSubmit, ...otherTextAreaProps }: ChatFi
4343
onContentChange(e.target.value);
4444
}}
4545
onKeyDown={onEnter}
46-
rightElement={<IconButton name={"navigation-forth"} onClick={() => onSubmit(chatvalue.current)} />}
46+
rightElement={<IconButton name={"operation-send"} onClick={() => onSubmit(chatvalue.current)} />}
4747
{...otherTextAreaProps}
4848
/>
4949
);

src/components/Icon/canonicalIconNames.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ const canonicalIcons = {
147147
"operation-merge": icons.DirectionMerge,
148148
"operation-redo": icons.Redo,
149149
"operation-search": icons.Search,
150+
"operation-send": icons.Send,
150151
"operation-sharelink": icons.CopyLink,
151152
"operation-transform": icons.Calculation,
152153
"operation-translate": icons.Translate,

0 commit comments

Comments
 (0)