vh.js 296 B

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