diff --git a/src/components/svg-flow-graph/initial-edge/index.tsx b/src/components/svg-flow-graph/initial-edge/index.tsx index b1255d5..d56a0db 100644 --- a/src/components/svg-flow-graph/initial-edge/index.tsx +++ b/src/components/svg-flow-graph/initial-edge/index.tsx @@ -3,13 +3,13 @@ import { ArrowMarker } from "../arrow-marker"; export const InitialEdge = ({ pos }: { pos: PositionInfo }) => { const endPoint = { - x: pos.x - 10, - y: pos.y + 10, + x: pos.x - 7, + y: pos.y + 7, }; const startPoint = { - x: endPoint.x - 5, - y: endPoint.y - 10, + x: endPoint.x - 3.5, + y: endPoint.y - 7, }; const markerId = `n${Math.floor(Math.random() * 1000)}`; @@ -19,7 +19,7 @@ export const InitialEdge = ({ pos }: { pos: PositionInfo }) => { - +