Refactor: Change group Icon

This commit is contained in:
igorrCarvalho 2023-11-28 19:03:57 -03:00
commit a59399bac6
2 changed files with 3 additions and 1 deletions

View file

@ -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}
>
<IconComponent name="Group" className="w-6" />
<IconComponent name="Combine" className="w-6" />
Group
</button>
</div>

View file

@ -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,
};