react-svg-loading-icons
v1.0.0
Published
collection of best customizable loading icons for react.js
Downloads
6
Readme
react-svg-loading-icons
collection of best customizable loading icons for react.js
Note: I made this repo for react.js from a pen by aurer
Installation
npm:
npm install react-svg-loading-icons --save
yarn:
yarn add react-svg-loading-icons
Example
import {
SVGLoadingIcon1,
SVGLoadingIcon2,
SVGLoadingIcon3,
SVGLoadingIcon4,
SVGLoadingIcon5,
SVGLoadingIcon6,
SVGLoadingIcon7,
SVGLoadingIcon8
} from 'react-svg-loading-icons';
const App = () => (
<div>
<SVGLoadingIcon1 />
<SVGLoadingIcon2 />
<SVGLoadingIcon3 />
<SVGLoadingIcon4 />
<SVGLoadingIcon5 />
<SVGLoadingIcon6 />
<SVGLoadingIcon7 />
<SVGLoadingIcon8 />
</div>
);
export App;