
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
react-loading-indicators
Advanced tools
Simply elegant light-weight loading indicators for react applications
A library of usable and wonderful loading indicators to communicate a behind scenes progress to system users.
Built with Typescript. Compatible with react version >=16.8.0(since hooks).
A glimpse of what is wrapped 🎁.
See DEMO page.
npm install react-loading-indicators
<Atom />
<Commet />
<OrbitProgress />
<GlidingBlink />
<FourSquare />
<TrophySpin />
<ThreeDot />
<LifeLine />
<Mosaic />
<Riple />
<Slab />
Heads Up 📢
The following components were renamed:
-<CircularProgress /><OrbitProgress />-<Seek /><ThreeDot />-<GlidingBlink /><BlinkBlur />-<Twist /><TrophySpin />-<Pulse /><LifeLine />
import React from "react";
import { Atom } from "react-loading-indicators";
/*
| OR directly pull it 😎
| import Atom from "react-loading-indicators/Atom";
*/
const Loading = () => <Atom text="Loading..." />;
export default Loading;
<Suspense fallback={<Loading />}>
<Albums artistId={artist.id} />
</Suspense>
Side note: You can use suspense for data fetching other than lazy loading.
This library is fairly small. However, you might be turbo-charged to make bundle size of your project as small as possible.
You can directly include a loading indicator you want to ensure it is the only thing included from the library:
import React from "react";
import OrbitProgress from "react-loading-indicators/OrbitProgress";
const Loading = () => (
<OrbitProgress variant="track-disc" color="crimson" size="small" />
);
export default Loading;
Each of these components will accept the following optional props.
| Name | DataType | Default Value | Possible Values |
|---|---|---|---|
| size | string | medium | small, medium, large |
| color | string or array | limegreen | CSS color values |
| style | object | null | CSS styles(in Reactjs format) |
| text | string or boolean | false | Boolean value or any string |
| textColor | string | undefined | CSS color values |
| speedPlus | number | 0 | Number in the range -5 through 5 |
| easing | string | default ease function | CSS easing function |
size - Sets the size of the loading indicator.color - Sets the color of the loading indicator.style - Applies CSS styles to the loading indicatortext - Displays message in the loading indicator.textColor - Sets the color of text message in the loading indicator.speedPlus - Controls speed of animation. Negative values slows down. Positive numbers speeds up animation. 0 is normal speed.easing - Controls the smoothness of the animation, altered with values such as linear, ease-in.Some components accept a variant prop, Specifically <OrbitProgress /> and <ThreeDot />. This lets you choose a variation of a loading indicator that you want.
| Name | DataType |
|---|---|
| variant | string |
<OrbitProgress /> has the following variants: dotted, bubble-dotted, disc, split-disc, track-disc. Defaults to disc.
<ThreeDot /> has the following variants: pulsate, windmill, bob, brick-stack. Defaults to pulsate.
See DEMO to visualize.
You can resize a spinner to fit into your needs with the size prop that accepts predefined string input.
If this is not enough, you can give a loading indicator a fontSize property via the style prop. The style prop is an object that allows you to add your own css. Including fontSize in the style object will evenly alter the animation's size, e.g
const Loading = () => <ThreeDot style={{ fontSize: "8px" }} />;
Distributed under the MIT License. See LICENSE for more information.
FAQs
Kit of elegant loading indicators for react applications
The npm package react-loading-indicators receives a total of 5,720 weekly downloads. As such, react-loading-indicators popularity was classified as popular.
We found that react-loading-indicators demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.