react-animated-waves 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1499
- package/dist/index.js.map +1 -0
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
<img alt="Status" src="https://img.shields.io/github/actions/workflow/status/agrawal-rohit/react-animated-waves/ci.yml">
|
|
9
9
|
<img alt="Sonar Coverage" src="https://img.shields.io/sonar/coverage/agrawal-rohit_react-animated-waves?server=https%3A%2F%2Fsonarcloud.io">
|
|
10
10
|
<img alt="Downloads" src="https://img.shields.io/npm/dt/react-animated-waves">
|
|
11
|
-
<img alt="NPM bundle size" src="https://img.shields.io/bundlephobia/min/react-animated-waves">
|
|
12
11
|
<img alt="License" src="https://img.shields.io/github/license/agrawal-rohit/react-animated-waves" />
|
|
13
12
|
</p>
|
|
14
13
|
|
|
@@ -39,7 +38,7 @@ Check out an interactive demo [here](https://codesandbox.io/p/sandbox/react-anim
|
|
|
39
38
|
Import the `Waves` component from `react-animated-waves` and use it in your React app as follows:
|
|
40
39
|
|
|
41
40
|
```jsx
|
|
42
|
-
import Waves from "react-animated-waves";
|
|
41
|
+
import { Waves } from "react-animated-waves";
|
|
43
42
|
|
|
44
43
|
<Waves amplitude={20} colors={["#FF6AC6", "#436EDB", "#FF6AC6"]} />;
|
|
45
44
|
```
|
package/dist/index.d.ts
CHANGED