Skip to content

Commit 63cb924

Browse files
committed
fix icons
1 parent 51d0592 commit 63cb924

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/portal/src/app/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import {
1010
} from "@/components/ui/dropdown-menu";
1111
import clsx from "clsx";
1212
import {
13-
BotIcon,
1413
ChevronDownIcon,
1514
MenuIcon,
15+
MessageCircleIcon,
1616
TableOfContentsIcon,
1717
} from "lucide-react";
1818
import Link from "next/link";
@@ -227,7 +227,7 @@ export function Header() {
227227
router.push("/chat");
228228
}}
229229
>
230-
<BotIcon className="mr-2 size-4" />
230+
<MessageCircleIcon className="mr-2 size-4" />
231231
Ask AI
232232
</Button>
233233
</div>
@@ -254,7 +254,7 @@ export function Header() {
254254
className="p-2"
255255
onClick={() => router.push("/chat")}
256256
>
257-
<BotIcon className="size-7" />
257+
<MessageCircleIcon className="size-7" />
258258
</Button>
259259
<Button
260260
variant="ghost"

apps/portal/src/components/AI/chat.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { MarkdownRenderer } from "@/components/markdown/MarkdownRenderer";
44
import { LoadingDots } from "@/components/ui/LoadingDots";
55
import { Button } from "@/components/ui/button";
66
import { AutoResizeTextarea } from "@/components/ui/textarea";
7-
import siwaIcon from "@/icons/siwa-icon.png";
87
import { cn } from "@/lib/utils";
8+
import { MessageCircleIcon } from "lucide-react";
99
import { ArrowUpIcon, ThumbsDownIcon, ThumbsUpIcon } from "lucide-react";
1010
import { usePostHog } from "posthog-js/react";
1111
import {
@@ -38,7 +38,7 @@ function ChatEmptyState({
3838
}: { onPromptClick: (prompt: string) => void }) {
3939
return (
4040
<div className="flex flex-col items-center justify-center space-y-8 py-16 text-center">
41-
<img src={siwaIcon.src} alt="SIWA" className="size-16" />
41+
<MessageCircleIcon className="size-16" />
4242

4343
<h2 className="font-semibold text-3xl text-foreground">
4444
How can I help you <br />

0 commit comments

Comments
 (0)