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