import { curveStep } from 'd3-shape'; import { Curve } from './curve'; export const HVH = (options) => { return (P, value, coordinate, theme) => { return Curve(Object.assign({ curve: curveStep }, options))(P, value, coordinate, theme); }; }; HVH.props = Object.assign(Object.assign({}, Curve.props), { defaultMarker: 'hvh' }); //# sourceMappingURL=hvh.js.map