Skip to content

Commit cfa7829

Browse files
committed
style(chat): update icon and styling in ChatMessage component
- Replace LuBrain icon with LuBot icon for reasoning section - Change border radius from rounded-xl to rounded-lg for collapsible trigger
1 parent af64620 commit cfa7829

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/Chat/components/ChatMessage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { memo, useMemo, useState } from 'react';
77
import { Trans, useTranslation } from 'react-i18next';
88
import {
99
LuAtom,
10-
LuBrain,
10+
LuBot,
1111
LuChevronDown,
1212
LuChevronLeft,
1313
LuChevronRight,
@@ -535,7 +535,7 @@ const ThinkingSection = memo(function ThinkingSection({
535535
onOpenChange={setOpen}
536536
aria-label={t('chatScreen.ariaLabels.thoughtDisplay')}
537537
>
538-
<CollapsibleTrigger className="btn border-0 rounded-xl my-2 p-2 px-4">
538+
<CollapsibleTrigger className="btn border-0 rounded-lg my-2 p-2 px-4">
539539
{isThinking && (
540540
<>
541541
<Icon size="md" variant="leftside" className="animate-spin">
@@ -547,7 +547,7 @@ const ThinkingSection = memo(function ThinkingSection({
547547
{!isThinking && (
548548
<>
549549
<Icon size="md" variant="leftside">
550-
<LuBrain />
550+
<LuBot />
551551
</Icon>
552552
<Trans i18nKey="chatScreen.labels.reasoning" />
553553
</>

0 commit comments

Comments
 (0)