React replacement of d3-axis
npm install react-d3-axis-ts

!Uses TypeScript

The d3 axis, with some improvements.
- The style is configurable.
- The path and lines are now centered on the axis and scale values and use shape-rendering: crispEdges.
``tsx
import { Axis } from 'react-d3-axis-ts';
scale={yScale}
tickArguments={[10]}
color='#f99'
tickSizeInner={width - 40}
tickSizeOuter={width - 40}
scaleRev={rev}
/>
``