add azure icon
This commit is contained in:
parent
0856aacebf
commit
1eacfc4971
6 changed files with 74 additions and 81 deletions
61
src/frontend/src/icons/Azure/Azure.jsx
Normal file
61
src/frontend/src/icons/Azure/Azure.jsx
Normal file
File diff suppressed because one or more lines are too long
8
src/frontend/src/icons/Azure/index.tsx
Normal file
8
src/frontend/src/icons/Azure/index.tsx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import React, { forwardRef } from "react";
|
||||
import SvgAzure from "./Azure";
|
||||
|
||||
export const AzureIcon = forwardRef<SVGSVGElement, React.PropsWithChildren<{}>>(
|
||||
(props, ref) => {
|
||||
return <SvgAzure ref={ref} {...props} />;
|
||||
}
|
||||
);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 182 KiB |
|
|
@ -1,9 +0,0 @@
|
|||
import React, { forwardRef } from "react";
|
||||
import SvgAzureChatOpenAi from "./AzureChatOpenAi";
|
||||
|
||||
export const AzureOpenAiEmbeddingsIcon = forwardRef<
|
||||
SVGSVGElement,
|
||||
React.PropsWithChildren<{}>
|
||||
>((props, ref) => {
|
||||
return <SvgAzureChatOpenAi ref={ref} {...props} />;
|
||||
});
|
||||
|
|
@ -128,7 +128,7 @@ import { FaApple, FaGithub, FaRobot } from "react-icons/fa";
|
|||
import { AWSIcon } from "../icons/AWS";
|
||||
import { AirbyteIcon } from "../icons/Airbyte";
|
||||
import { AnthropicIcon } from "../icons/Anthropic";
|
||||
import { AzureOpenAiEmbeddingsIcon } from "../icons/AzureOpenAiEmbeddings";
|
||||
import { AzureIcon } from "../icons/Azure";
|
||||
import { BingIcon } from "../icons/Bing";
|
||||
import { ChromaIcon } from "../icons/ChromaIcon";
|
||||
import { CohereIcon } from "../icons/Cohere";
|
||||
|
|
@ -256,15 +256,16 @@ export const nodeNames: { [char: string]: string } = {
|
|||
};
|
||||
|
||||
export const nodeIconsLucide: iconsType = {
|
||||
AzureChatOpenAi: AzureOpenAiEmbeddingsIcon,
|
||||
AzureChatOpenAi: AzureIcon,
|
||||
Ollama: OllamaIcon,
|
||||
ChatOllama: OllamaIcon,
|
||||
AzureOpenAiEmbeddings: AzureOpenAiEmbeddingsIcon,
|
||||
AzureOpenAiEmbeddings: AzureIcon,
|
||||
Azure: AzureIcon,
|
||||
OllamaEmbeddings: OllamaIcon,
|
||||
ChatOllamaModel: OllamaIcon,
|
||||
Faiss: MetaIcon,
|
||||
FaissSearch: MetaIcon,
|
||||
AzureOpenAiModel: AzureOpenAiEmbeddingsIcon,
|
||||
AzureOpenAiModel: AzureIcon,
|
||||
Redis: RedisIcon,
|
||||
RedisSearch: RedisIcon,
|
||||
PostgresChatMessageHistory: PostgresIcon,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue