React components to draw different types of curves with `svg`. It wraps all the curve paths from [d3-shape](https://github.com/d3/d3-shape/blob/master/README.md#curves).
npm install react-svg-curveReact components to draw different types of curves with svg. It wraps all the curve paths from d3-shape.
Install
``bash`
npm install react-svg-curve
Use
`jsx
import { BasisCurve } from 'react-svg-curve';
function App() {
return (
);
}
`
BasisCurve` is one of many types of curves available. Go to the demo on codesandbox to see all the curves and options.