diff --git a/src/components/graph/BaseNode.tsx b/src/components/graph/BaseNode.tsx index 58d01b5..4ce646f 100644 --- a/src/components/graph/BaseNode.tsx +++ b/src/components/graph/BaseNode.tsx @@ -124,7 +124,7 @@ export function BaseNodeHeaderRow({ return (
@@ -162,7 +162,7 @@ export function BaseNodeContent({ return (
); diff --git a/src/components/graph/NodeHandles.tsx b/src/components/graph/NodeHandles.tsx index 2e11663..293dcf9 100644 --- a/src/components/graph/NodeHandles.tsx +++ b/src/components/graph/NodeHandles.tsx @@ -1,6 +1,6 @@ import React from 'react' import { Handle, Position } from '@xyflow/react' -import { Circle, CircleDashed } from 'lucide-react' +import { ArrowDownLeft, ArrowUpRight } from 'lucide-react' type NodeHandleProps = { id: string @@ -26,7 +26,7 @@ export function InputHandle({ id }: NodeHandleProps) { justifyContent: 'center', }} > - + ) } @@ -51,7 +51,7 @@ export function OutputHandle({ id }: NodeHandleProps) { justifyContent: 'center', }} > - + ) }