import { forwardRef, HTMLAttributes } from "react";
import { cn } from "@/lib/utils";
export const BaseNode = forwardRef<
HTMLDivElement,
HTMLAttributes & {
selected?: boolean;
invalid?: boolean;
}
>(({ className, selected, invalid, ...props }, ref) => (
));
BaseNode.displayName = "BaseNode";