Merge pull request #589 from AnishSarkar22/feature/note-management

Feature: Note Management system
This commit is contained in:
Rohan Verma 2025-12-16 22:44:57 -08:00 committed by GitHub
commit f18425d739
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 1801 additions and 86 deletions

View file

@ -17,7 +17,7 @@ import {
IconTicket,
IconWorldWww,
} from "@tabler/icons-react";
import { File, Globe, Link, Microscope, Search, Sparkles, Telescope, Webhook } from "lucide-react";
import { File, FileText, Globe, Link, Microscope, Search, Sparkles, Telescope, Webhook } from "lucide-react";
import { EnumConnectorName } from "./connector";
export const getConnectorIcon = (connectorType: EnumConnectorName | string, className?: string) => {
@ -71,6 +71,8 @@ export const getConnectorIcon = (connectorType: EnumConnectorName | string, clas
return <IconBrandYoutube {...iconProps} />;
case "FILE":
return <File {...iconProps} />;
case "NOTE":
return <FileText {...iconProps} />;
case "EXTENSION":
return <Webhook {...iconProps} />;
case "DEEP":