Add an icon in the input bar for research mode

This commit is contained in:
sabaimran 2024-12-10 17:49:25 -08:00
parent 01d000e570
commit d7e5a76ace

View file

@ -51,6 +51,7 @@ import {
FilePdf, FilePdf,
FileMd, FileMd,
MicrosoftWordLogo, MicrosoftWordLogo,
Microscope,
} from "@phosphor-icons/react"; } from "@phosphor-icons/react";
import { OrgMode } from "@/app/components/logo/fileLogo"; import { OrgMode } from "@/app/components/logo/fileLogo";
@ -219,6 +220,10 @@ export function getIconForSlashCommand(command: string, customClassName: string
return <Code className={className} />; return <Code className={className} />;
} }
if (command.includes("research")) {
return <Microscope className={className} />;
}
return <ArrowRight className={className} />; return <ArrowRight className={className} />;
} }