If you want to add a simple animated connection similar to the one shown above, you can use the following CSS snippet

.Connection_svg__-fKLY {
stroke-dasharray:5;
animation: dashdraw .5s linear infinite;
}
@keyframes dashdraw {
0% { stroke-dashoffset: 10 }
}