diff --git a/src/frontend/src/components/EditFlowSettingsComponent/index.tsx b/src/frontend/src/components/EditFlowSettingsComponent/index.tsx index 919a2e68a..94ee4f19e 100644 --- a/src/frontend/src/components/EditFlowSettingsComponent/index.tsx +++ b/src/frontend/src/components/EditFlowSettingsComponent/index.tsx @@ -74,12 +74,11 @@ export const EditFlowSettings: React.FC = ({ onChange={handleDescriptionChange} value={description!} placeholder="Flow description" - className="mt-2 max-h-[100px] font-normal resize-none" + className="mt-2 max-h-[100px] resize-none font-normal" rows={3} onDoubleClickCapture={(event) => { handleFocus(event); }} - /> ) : ( \ No newline at end of file diff --git a/src/frontend/src/icons/GoogleGenerativeAI/GoogleGemini.jsx b/src/frontend/src/icons/GoogleGenerativeAI/GoogleGemini.jsx new file mode 100644 index 000000000..dcd531ebb --- /dev/null +++ b/src/frontend/src/icons/GoogleGenerativeAI/GoogleGemini.jsx @@ -0,0 +1,10 @@ +const SvgGoogleGenerativeAI = (props) => ( + + + + + + + +); +export default SvgGoogleGenerativeAI; diff --git a/src/frontend/src/icons/GoogleGenerativeAI/index.tsx b/src/frontend/src/icons/GoogleGenerativeAI/index.tsx new file mode 100644 index 000000000..2123f129d --- /dev/null +++ b/src/frontend/src/icons/GoogleGenerativeAI/index.tsx @@ -0,0 +1,9 @@ +import React, { forwardRef } from "react"; +import SvgGoogleGenerativeAI from "./GoogleGemini"; + +export const GoogleGenerativeAIIcon = forwardRef< + SVGSVGElement, + React.PropsWithChildren<{}> +>((props, ref) => { + return ; +}); diff --git a/src/frontend/src/utils/styleUtils.ts b/src/frontend/src/utils/styleUtils.ts index f298e8a6a..8594fa1b1 100644 --- a/src/frontend/src/utils/styleUtils.ts +++ b/src/frontend/src/utils/styleUtils.ts @@ -151,6 +151,7 @@ import { EvernoteIcon } from "../icons/Evernote"; import { FBIcon } from "../icons/FacebookMessenger"; import { GitBookIcon } from "../icons/GitBook"; import { GoogleIcon } from "../icons/Google"; +import { GoogleGenerativeAIIcon } from "../icons/GoogleGenerativeAI"; import { GradientInfinity, GradientSave, @@ -328,6 +329,7 @@ export const nodeIconsLucide: iconsType = { GoogleSearchResults: GoogleIcon, GoogleSearchRun: GoogleIcon, Google: GoogleIcon, + GoogleGenerativeAI: GoogleGenerativeAIIcon, HNLoader: HackerNewsIcon, HuggingFaceHub: HuggingFaceIcon, HuggingFace: HuggingFaceIcon,