diff --git a/packages/react/src/components/Edges/BaseEdge.tsx b/packages/react/src/components/Edges/BaseEdge.tsx
index c03c5af9..3d951796 100644
--- a/packages/react/src/components/Edges/BaseEdge.tsx
+++ b/packages/react/src/components/Edges/BaseEdge.tsx
@@ -2,10 +2,9 @@ import { isNumeric } from '@xyflow/system';
import cc from 'classcat';
import { EdgeText } from './EdgeText';
-import type { BaseEdgeProps, EdgeComponentWithPathOptions, EdgeProps } from '../../types';
+import type { BaseEdgeProps } from '../../types';
export function BaseEdge({
- id,
path,
labelX,
labelY,
@@ -15,23 +14,12 @@ export function BaseEdge({
labelBgStyle,
labelBgPadding,
labelBgBorderRadius,
- markerEnd,
- markerStart,
- className,
interactionWidth = 20,
...props
}: BaseEdgeProps) {
return (
<>
-
+
{interactionWidth && (
, 'd'> &
labelX?: number;
/** The y position of edge label */
labelY?: number;
- /** Marker at start of edge
- * @example 'url(#arrow)'
- */
- markerStart?: string;
- /** Marker at end of edge
- * @example 'url(#arrow)'
- */
- markerEnd?: string;
/** SVG path of the edge */
path: string;
};