import { curveStep } from '@antv/vendor/d3-shape'; import { ShapeComponent as SC } from '../../runtime'; import { Curve } from './curve'; export type HVHOptions = Record; export const HVH: SC = (options, context) => { return (...params) => { return Curve({ curve: curveStep, ...options }, context)(...params); }; }; HVH.props = { ...Curve.props, defaultMarker: 'hvh', };