Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-loading-spinner

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-loading-spinner

Loading spinner component for React

  • 1.0.12
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
151
decreased by-25.25%
Maintainers
1
Weekly downloads
 
Created
Source

React loading spinner

Loading spinner component for React

Installation

npm install -save react-loading-spinner

Usage

Show loading spinner when content is loading and show content when it is loaded.

<Loading isLoading={this.props.isLoadingContent}
         loadingClassName='loading'
         spinner={Spinner}>
  {this.props.content ? (
    <Content />
  ) : null}
</Loading>

You can also assign content as a prop:

<Loading isLoading={this.props.isLoadingContent} children={Content} />

See example

Options

isLoading

It is the state of loading spinner, if true — show spinner, otherwise show content if it is exist.

spinner

Set react component, as a custom spinner. If it is not exist there will be default spinner.

loadingClassName

Style class name for loading wrapper. By default — loadingContiner

children

Assign child component as a property.

License

MIT

Keywords

FAQs

Package last updated on 26 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc