react-animation-loader
Version:
This is simple animation loader with some css animation and an image with moving animation. Check it out.
54 lines (40 loc) • 1.1 kB
Markdown
is simple animation loader with some css animation and an image with moving animation. Check it out.
- [Install](
- [Example](
- [Props](
- [License](
```sh
$ npm install react-animation-loader
```
or
```sh
$ yarn add react-animation-loader
```

```JSX
import React, { useEffect, useState } from 'react';
function App() {
const [isLoading, setIsLoading] = useState(true);
useEffect(() => {
setTimeout(() => {
setIsLoading(false)
}, 4000);
}, []);
return (
<div>
<Loader isLoading={isLoading} bgColor="f2f2f2" icon="https://s.gravatar.com/avatar/d2ce5c403a09447328dc8354aaa915ba?size=100&default=retroa" />
</div>
)
}
export default App;
```
- **isLoading** (bool) (required)
- **bgColor** (string) (required)
- **icon** (string)
[ ](https://radhakishan.vpran.in)
This