From a59399bac67787812ff2c15af0db975ce2b154ad Mon Sep 17 00:00:00 2001 From: igorrCarvalho Date: Tue, 28 Nov 2023 19:03:57 -0300 Subject: [PATCH] Refactor: Change group Icon --- .../pages/FlowPage/components/SelectionMenuComponent/index.tsx | 2 +- src/frontend/src/utils/styleUtils.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/pages/FlowPage/components/SelectionMenuComponent/index.tsx b/src/frontend/src/pages/FlowPage/components/SelectionMenuComponent/index.tsx index f4ec68724..251a95a48 100644 --- a/src/frontend/src/pages/FlowPage/components/SelectionMenuComponent/index.tsx +++ b/src/frontend/src/pages/FlowPage/components/SelectionMenuComponent/index.tsx @@ -45,7 +45,7 @@ export default function SelectionMenu({ onClick, nodes, isVisible }) { className="flex h-full w-full items-center justify-between text-sm hover:text-indigo-500" onClick={onClick} > - + Group diff --git a/src/frontend/src/utils/styleUtils.ts b/src/frontend/src/utils/styleUtils.ts index 78683f724..9399c2d80 100644 --- a/src/frontend/src/utils/styleUtils.ts +++ b/src/frontend/src/utils/styleUtils.ts @@ -99,6 +99,7 @@ import { X, XCircle, Zap, + Combine, } from "lucide-react"; import { FaApple, FaGithub } from "react-icons/fa"; import { AWSIcon } from "../icons/AWS"; @@ -356,4 +357,5 @@ export const nodeIconsLucide: iconsType = { Link, ToyBrick, RefreshCcw, + Combine, };