React loading animation which can be displayed while data is fetched from an API.
npm i fetch-loading
import { FetchLoading } from 'fetch-loading'
...
<FetchLoading />
### with no arguments being passed,
### the animation will fall back to its default color #52525c
...
You can also pass any Hex- / RGB- or RGBA-value as an argument for the theme
property:
...
<FetchLoading theme="#121" />
<FetchLoading theme="#608c" />
<FetchLoading theme="#ffe98c" />
<FetchLoading theme="#ff1e2cf0" />
<FetchLoading theme="rgb(178, 165, 253)" />
<FetchLoading theme="rgba(131, 240, 131, 0.8)" />
...