Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/useanimations/react-useanimations

React-useanimations is a collection of free animated open source icons for React.js.
https://github.com/useanimations/react-useanimations

animation lottie lottie-animation micro-animations micro-interactions react

Last synced: 30 days ago
JSON representation

React-useanimations is a collection of free animated open source icons for React.js.

Awesome Lists containing this project

README

        

## React UseAnimations Icons

[![npm version](https://img.shields.io/npm/v/react-useanimations.svg?style=flat-square)](https://www.npmjs.com/package/react-useanimations) [![npm downloads](https://img.shields.io/npm/dm/react-useanimations.svg?style=flat-square)](https://www.npmjs.com/package/react-useanimations)

#### What is react-useanimations?

React-useanimations is a collection of free animated open source icons for React.js.

#### Collection

[https://react.useanimations.com](https://react.useanimations.com/) and play with examples or visit our [Storybook](https://useanimations.github.io/react-useanimations/)

![](useanimations-preview.gif)

### Installation

Using Yarn:

```
yarn add react-useanimations
```

or using NPM:

```
npm install -S react-useanimations
```

### Usage
If you still need to use v1, please refer to this README instead - [react-useanimations@v1](https://github.com/useAnimations/react-useanimations/blob/master/README_v1.md)

Basic usage
```javascript
import React from 'react';
import UseAnimations from 'react-useanimations';
// EVERY ANIMATION NEEDS TO BE IMPORTED FIRST -> YOUR BUNDLE WILL INCLUDE ONLY WHAT IT NEEDS
import github from 'react-useanimations/lib/github'

const App = () => ;

export default App;
```

Icons can be configured with inline props:

```javascript

```

These props are available:
| Prop | Default | Definition |
| :------------- | :----------: | -----------: |
| animation | / | animation file |
| size | `24` | animation size |
| strokeColor | `'inherit'` | animation stroke color |
| fillColor | `''` | animation fill color
| wrapperStyle | `{}` | wrapper div styles |
| pathCss | `''` | css string for the animation path element |
| reverse | `false` | assing to `true` when eg. checkbox should be checked initally |
| autoplay | `false`* | false except in animations like loading etc. |
| loop | `false`* | false except in animations like loading etc. |
| options | `{}` | provide any other custom options which will override the default ones |
| speed | `1` | a number to determine the speed of lottie(1 is normal speed) |



Controlled checkbox example

```javascript
export const RadioButton = () => {
// JUST EXAMPLE - THIS PART OF THE STATE WILL PROBABLY COME FROM A PARENT FORM COMPONENT
const [checked, setChecked] = useState(true);

return (


radioButton
{
setChecked(!checked);
}}
size={40}
wrapperStyle={{ marginTop: '5px' }}
animation={radioButton}
/>

);
};
```

Animation wrapped in element (use render prop).
```javascript
export const WrapperElement = () => {
return (
{
// eslint-disable-next-line
console.log('additional onClick cb is working');
}}
render={(eventProps, animationProps) => (



)}
/>
);
};
```
Note that `eventProps` consists of `onClick`, `mouseOver` and other DOM events which you probably want to assign to your wrapping element (e.g. Button) and `animationProps` consist of an actual animation which you should spread inside a simple `
`