/* eslint-disable */
// @ts-nocheck
import { memo } from "react";
import { Handle, Position } from "reactflow";
type NodeProps = {
data: { label: string };
selected: boolean;
};
type SubFlowNodeProps = NodeProps & {
prefix: string;
};
const SubFlowNodeInner = ({
data: { label },
prefix,
selected,
}: SubFlowNodeProps) => {
return (
<>