import { cn } from "@/lib/utils"; import { Handle, type HandleProps } from "@xyflow/react"; /** Visual diameter; React Flow’s default is ~6px — larger so half the disc reads clearly past the node edge. */ export const RF_HANDLE_SIZE_PX = 14; export type RFEdgeHandleProps = Omit & { className?: string; accentColor?: string; }; export function RFEdgeHandle({ className, accentColor, style, ...rest }: RFEdgeHandleProps) { return ( ); }