Skip to content

Commit 4f38409

Browse files
committed
Back to Lightbulb, not bot
1 parent fb3178d commit 4f38409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webview-ui/src/components/chat/ReasoningBlock.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useEffect, useRef, useState } from "react"
22
import { useTranslation } from "react-i18next"
33

44
import MarkdownBlock from "../common/MarkdownBlock"
5-
import { Bot } from "lucide-react"
5+
import { Lightbulb } from "lucide-react"
66

77
interface ReasoningBlockProps {
88
content: string
@@ -40,7 +40,7 @@ export const ReasoningBlock = ({ content, isStreaming, isLast }: ReasoningBlockP
4040
<div>
4141
<div className="flex items-center justify-between mb-2.5 pr-2">
4242
<div className="flex items-center gap-2">
43-
<Bot className="w-4" />
43+
<Lightbulb className="w-4" />
4444
<span className="font-bold text-vscode-foreground">{t("chat:reasoning.thinking")}</span>
4545
</div>
4646
{elapsed > 0 && (

0 commit comments

Comments
 (0)