import type { ComponentProps } from "react"; import { Handle, type HandleProps } from "@xyflow/react"; import { cn } from "@/lib/utils"; export type BaseHandleProps = HandleProps; export function BaseHandle({ className, children, ...props }: ComponentProps) { return ( {children} ); }