npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@slnsw/react-spinners-kit

v1.9.2

Published

A collection of loading spinners

Downloads

1

Readme

React Spinners Kit

npm version Build Status downloads license

A collection of loading spinners built with styled-components.

Imgur

Live Demo

  • To check out live examples visit https://dmitrymorozoff.github.io/react-spinners-kit/

🚀 Installation

Install @slnsw/react-spinners-kit using npm.

npm install --save @slnsw/react-spinners-kit

or if you prefer yarn

yarn add @slnsw/react-spinners-kit

👨🏻‍💻 Usage

import React from "react";
import ReactDOM from "react-dom";
import { PushSpinner } from "@slnsw/react-spinners-kit";

class App extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            loading: true,
        };
    }

    render() {
        const { loading } = this.state;
        return <PushSpinner size={30} color="#686769" loading={loading} />;
    }
}

ReactDOM.render(<App />, document.getElementById("root"));

📃 PropTypes and Default Props

  • Each spinner accepts a loading prop as a boolean.
  • The loading prop defaults to true.
  • The loader will not render anything if loading is false.

| Spinner | size: number | color: string | frontColor: string | backColor: string | sizeUnit: string | | ---------------- | ------------ | ------------- | ------------------ | ----------------- | ---------------- | | BallSpinner | 40 | #00ff89 | - | - | px | | BarsSpinner | 40 | #00ff89 | - | - | px | | CircleSpinner | 30 | #fff | - | - | px | | CubeSpinner | 25 | - | #00ff89 | #686769 | px | | DominoSpinner | 100 | #686769 | - | - | px | | FillSpinner | 20 | #686769 | - | - | px | | FireworkSpinner | 40 | #fff | - | - | px | | FlagSpinner | 40 | #fff | - | - | px | | GridSpinner | 40 | #fff | - | - | px | | GuardSpinner | 40 | - | #00ff89 | #686769 | px | | HeartSpinner | 40 | #fff | - | - | px | | ImpulseSpinner | 40 | - | #00ff89 | #686769 | px | | PulseSpinner | 40 | #fff | - | - | px | | PushSpinner | 30 | #686769 | - | - | px | | SequenceSpinner | 40 | - | #00ff89 | #686769 | px | | SphereSpinner | 30 | #fff | - | - | px | | SpiralSpinner | 40 | | #00ff89 | #686769 | px | | StageSpinner | 40 | #fff | - | - | px | | SwapSpinner | 40 | #686769 | - | - | px | | WaveSpinner | 30 | #fff | - | - | px | | ClapSpinner | 30 | - | #00ff89 | #686769 | px | | RotateSpinner | 45 | #00ff89 | - | - | px | | SwishSpinner | 40 | - | #4b4c56 | #fff | px | | GooSpinner | 55 | #fff | - | - | px | | CombSpinner | 100 | #fff | - | - | px | | PongSpinner | 60 | #4b4c56 | - | - | px | | RainbowSpinner | 50 | #fff | - | - | px | | RingSpinner | 30 | #00ff89 | - | - | px | | HoopSpinner | 45 | #4b4c56 | - | - | px | | FlapperSpinner | 30 | #00ff89 | - | - | px | | MagicSpinner | 70 | #fff | - | - | px | | JellyfishSpinner | 60 | #4b4c56 | - | - | px | | TraceSpinner | 70 | - | #00ff89 | #4b4c56 | px | | ClassicSpinner | 30 | #fff | - | - | px | | MetroSpinner | 40 | #fff | - | - | px | | WhisperSpinner | 50 | #fff | #4b4c56 | #00ff89 | px |

Development

You can also test the components locally by cloning this repo and doing the following steps:

Install dependencies from package.json:

npm install

Runs the app in the development mode. Open http://localhost:1234 to view it in the browser.

npm start

Run linter

npm run lint

💻 Contributing

  • Pull requests and ⭐ stars are always welcome
  • For bugs and feature requests, please create an issue
  • Lint and test your code

License

MIT