import React from 'react' import { Handle, Position } from '@xyflow/react' import { Circle, CircleDashed } from 'lucide-react' type NodeHandleProps = { id: string } export function InputHandle({ id }: NodeHandleProps) { return ( ) } export function OutputHandle({ id }: NodeHandleProps) { return ( ) }