JSPM

load-animations-react

1.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q13635F
  • License MIT

Pure CSS Loading animations for ReactJs

Package Exports

  • load-animations-react
  • load-animations-react/dist/index.es.js
  • load-animations-react/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (load-animations-react) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

��# load-animations-react <br> > ### _Pure CSS animations as ready to use components for reactjs_ <br> ## Instalation <br> bash npm i load-animations-react <br> ## Demo ### _Click [here](https://loader-demo.netlify.app/) for the demo page that illustrates all the available loading animations_ <br> ## Attributes <br> | <div align ="center">Name </div> | <div align = "center">Description</div> | | -------------------------------- | ------------------------------------------------------------------------------------ | | color | Color of the spinner. Insert the color or the color code in quotes. Black by default | <br> ## Importing the Loaders <br> > ### _Replace LoaderName with the actual name of the loader. Visit the [demo](https://loader-demo.netlify.app/) page to see all the available loaders._ <br> javascript import { LoaderName } from "load-animations-react"; <br> ## Example <br> > ### _Given below is a simple implementation of the package._ <br> javascript import { CircleLoader } from "load-animations-react"; function App() { return ( <> <CircleLoader color="green" /> </> ); } export default App;