import { curveStepAfter } from '@antv/vendor/d3-shape'; import { ShapeComponent as SC } from '../../runtime'; import { Curve } from './curve'; export type HVOptions = Record; export const HV: SC = (options, context) => { return Curve({ curve: curveStepAfter, ...options }, context); }; HV.props = { ...Curve.props, defaultMarker: 'hv', };