Refactor: Change minimize icons

This commit is contained in:
igorrCarvalho 2023-09-19 15:24:39 -03:00
commit 9163aee3ef
2 changed files with 5 additions and 1 deletions

View file

@ -142,7 +142,7 @@ export default function NodeToolbarComponent({
}}
>
<IconComponent
name={showNode ? "Minus" : "Square"}
name={showNode ? "Minimize2" : "Maximize2"}
className="h-4 w-4"
/>
</button>

View file

@ -80,6 +80,8 @@ import {
X,
XCircle,
Zap,
Minimize2,
Maximize2,
} from "lucide-react";
import { FaApple, FaGithub } from "react-icons/fa";
import { AirbyteIcon } from "../icons/Airbyte";
@ -312,4 +314,6 @@ export const nodeIconsLucide: iconsType = {
ChevronUp,
Minus,
Square,
Minimize2,
Maximize2,
};