diff --git a/src/frontend/src/CustomNodes/GenericNode/index.tsx b/src/frontend/src/CustomNodes/GenericNode/index.tsx index afa2558f7..9a6f818f2 100644 --- a/src/frontend/src/CustomNodes/GenericNode/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/index.tsx @@ -176,7 +176,7 @@ export default function GenericNode({ { const TargetIcon = nodeIconsLucide[name] ?? nodeIconsLucide["unknown"]; + + const style = { + strokeWidth: 1.5, + className: className, + ...(stroke && { stroke: stroke }), + ...(iconColor && { color: iconColor, stroke: stroke }), + }; + return ( ); }