Skip to content

Commit 5477d99

Browse files
committed
Enhance: Change new chat icon
Change the icon for creating a new chat from a simple plus sign to an chat bubble with a plus sign. Signed-off-by: Craig Jellick <[email protected]>
1 parent 74f3564 commit 5477d99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/threads/new.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from '@nextui-org/react';
99
import { useEffect, useState, useContext } from 'react';
1010
import { ChatContext } from '@/contexts/chat';
11-
import { GoPlus } from 'react-icons/go';
11+
import { RiChatNewLine } from 'react-icons/ri';
1212
import { getScript, getScripts, Script } from '@/actions/me/scripts';
1313
import { AuthContext } from '@/contexts/auth';
1414
import { tildy } from '@/config/assistant';
@@ -73,7 +73,7 @@ const NewThread = ({ className, onOpenExplore }: NewThreadProps) => {
7373
<Dropdown placement="right-start">
7474
<DropdownTrigger>
7575
<Button
76-
startContent={<GoPlus />}
76+
startContent={<RiChatNewLine />}
7777
className={`${className}`}
7878
size="lg"
7979
variant="light"

0 commit comments

Comments
 (0)