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

react-spinner-material

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-spinner-material

A flashy material-design inspired spinner using purely css

  • 1.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.4K
decreased by-9.1%
Maintainers
1
Weekly downloads
 
Created
Source

npm downloads total npm version npm license

react-spinner-material

A simple react spinner following Material UI's using only css.

Example of Spinner

Installation

npm install --save react-spinner-material

or

yarn add react-spinner-material

PropTypes

NameTypeDefaultDescription
radiusNumber40The radius of the spinner
colorString#333333The color of the spinner
strokeNumber5The spinner's stroke width
visibleBooleantrueWhether to show the spinner or not

Usage

Example:

import Spinner from 'react-spinner-material';
import React, { Component } from 'react';

export default class Example extends Component {
  render() {
  return (
      <div>
        <Spinner radius={120} color={"#333"} stroke={2} visible={true} />
      </div>
    );
  }
}

Changelog

1.3.1

  • @pedroalmeida415 PR regarding SSR support

1.3.0

  • Reverting 1.2.0 commits to support IE :(

Keywords

FAQs

Package last updated on 09 Mar 2022

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