diff --git a/packages/visx-axis/src/axis/AxisRenderer.tsx b/packages/visx-axis/src/axis/AxisRenderer.tsx index eb3707e8e..657260a5f 100644 --- a/packages/visx-axis/src/axis/AxisRenderer.tsx +++ b/packages/visx-axis/src/axis/AxisRenderer.tsx @@ -29,7 +29,6 @@ export default function AxisRenderer({ labelProps, orientation = Orientation.bottom, scale, - shapeRendering, stroke = '#222', strokeDasharray, strokeWidth = 1, @@ -83,7 +82,6 @@ export default function AxisRenderer({ className={cx('visx-axis-line', axisLineClassName)} from={axisFromPoint} to={axisToPoint} - shapeRendering={shapeRendering} stroke={stroke} strokeWidth={strokeWidth} strokeDasharray={strokeDasharray} diff --git a/packages/visx-axis/src/types.ts b/packages/visx-axis/src/types.ts index f7cf8be85..ea3d68e0e 100644 --- a/packages/visx-axis/src/types.ts +++ b/packages/visx-axis/src/types.ts @@ -71,8 +71,6 @@ export type CommonProps = { orientation?: ValueOf; /** Pixel padding to apply to axis sides. */ rangePadding?: number | { start?: number; end?: number }; - /** Shape rendering for the lines. */ - shapeRendering?: SVGProps['shapeRendering']; /** The color for the stroke of the lines. */ stroke?: string; /** The pixel value for the width of the lines. */