Spaces:
Configuration error
Configuration error
File size: 601 Bytes
46e4902 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import React from 'react';
import { getBezierPath } from 'react-flow-renderer';
const CustomLine = ({
sourceX,
sourceY,
sourcePosition,
targetX,
targetY,
targetPosition,
connectionLineType,
connectionLineStyle,
}) => {
const edgePath = getBezierPath({
sourceX,
sourceY,
sourcePosition,
targetX,
targetY,
targetPosition,
});
return (
<g>
<path
fill="none"
stroke="#00FF4A"
strokeWidth={7}
className="animated"
d={edgePath}
/>
</g>
);
};
export default CustomLine; |