hv.js 294 B

1234567
  1. import { curveStepAfter } from 'd3-shape';
  2. import { Curve } from './curve';
  3. export const HV = (options) => {
  4. return Curve(Object.assign({ curve: curveStepAfter }, options));
  5. };
  6. HV.props = Object.assign(Object.assign({}, Curve.props), { defaultMarker: 'hv' });
  7. //# sourceMappingURL=hv.js.map