Skip to content

Commit 9b7d6fb

Browse files
committed
change icon
1 parent 6874409 commit 9b7d6fb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

components/Chat/ChatInput.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
import {IconArrowDown, IconBolt, IconSend, IconSendOff, IconUpload, IconWriting} from '@tabler/icons-react';
1+
import {
2+
IconArrowDown,
3+
IconBolt,
4+
IconCircleSquare,
5+
IconSend,
6+
IconSendOff,
7+
IconUpload,
8+
IconWriting
9+
} from '@tabler/icons-react';
210
import React, {KeyboardEvent, MutableRefObject, useCallback, useContext, useEffect, useRef, useState,} from 'react';
311

412
import {useTranslation} from 'next-i18next';
@@ -458,7 +466,7 @@ export const ChatInput = ({
458466
onClick={messageIsStreaming ? stopSend : handleSend}
459467
>
460468
{messageIsStreaming ? (
461-
<IconSendOff size={18}/>
469+
<IconCircleSquare size={18}/>
462470
) : (
463471
<IconSend size={18}/>
464472
)}

0 commit comments

Comments
 (0)