function Lines(data, {
colour = 'hsl(80deg 70% 40%)',
x = null
} = {}) {
const svg = d3.create('svg')
.attr('width', width)
.attr('height', height);
svg
.selectAll('line')
.data(data)
.join('line')
.attr('x1', x)
.attr('x2', x)
.attr('y1', 0)
.attr('y2', height)
.attr('stroke-width', strokeWidth)
.attr('stroke', colour)
return svg.node()
}