import { curveStepBefore } from 'd3-shape'; import { Curve } from './curve'; export const VH = (options) => { return Curve(Object.assign({ curve: curveStepBefore }, options)); }; VH.props = Object.assign(Object.assign({}, Curve.props), { defaultMarker: 'vh' }); //# sourceMappingURL=vh.js.map