crosshairs =
CURRY(
(
{stroke = "steelblue", strokeWidth = .5, strokeDasharray},
{size: {x, y, width, height}},
settings,
nugget,
pad
) =>
{
pad
.append("path")
.attr("d", `M${x} 0h${width}M0 ${y}v${height}`)
.attr("stroke", stroke)
.attr("stroke-width", strokeWidth)
.attr("stroke-dasharray", strokeDasharray)
;
}
)