Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pomber/react-svg-curve

React components to draw different types of curves with svg
https://github.com/pomber/react-svg-curve

bezier curve path react smooth spline svg

Last synced: about 2 months ago
JSON representation

React components to draw different types of curves with svg

Awesome Lists containing this project

README

        

# react-svg-curve

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).

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](https://codesandbox.io/embed/react-svg-curve-71nnp?fontsize=14&hidenavigation=1&theme=dark&view=preview) to see all the curves and options.