+ drag(node)}
+ style={{
+ width: "28px",
+ display: "flex",
+ justifyContent: "center",
+ alignItems: "center",
+ cursor: isDragging ? "grabbing" : "grab",
+ }}
+ >
+ {loading ? (
+
+ ) : (
+
+ )}
+
+
+
+ {children}
+
+
+
+
+
+
+ );
+};
+
+interface MoreOptionsProps {
+ disableMenu?: boolean;
+ onDelete?: () => void;
+ onView?: () => void;
+}
+
+const MoreOptions: React.FC