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