Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
react-loading-icons
Advanced tools
React implementation of the SVG Loaders library by Sam Herbert
A pure SVG zero-dependency React adaptation of Sam Herbert's SVG Loaders library.
Built with React 17 and TypeScript. Check out the Demo!
Also works with JavaScript, of course (supports ESM tree shaking).
yarn add react-loading-icons
npm install react-loading-icons
You can import all the loaders at once:
import LoadingIcons from 'react-loading-icons'
and use them in a namespaced manner:
<LoadingIcons.Bars />
You can also import a single loader:
import { Bars } from 'react-loading-icons'
and use it without any fancy namespacing:
<Bars />
You can even go as far as copying over a single .js file from the dist/components
directory to your project — this way you can directly import a certain loading icon without having to import the whole package.
<Audio />
<BallTriangle />
<Bars />
<Circles />
<Grid />
<Hearts />
<Oval />
<Puff />
<Rings />
<SpinningCircles />
<TailSpin />
<ThreeDots />
Each of these components will accept any SVG tag presentation attributes as well as all valid JSX properties (key
, onClick
, …) as props. Animation speed can be controlled via speed attribute (1
= 100% speed, .5
= 50% speed, 2
= 200%, and so on). The components are also smart about inheriting fill
, fillOpacity
, stroke
, strokeOpactiy
and strokeWidth
, so these can also easily be controlled.
// renders the Puff icon with a mint green stroke
<Puff stroke="#98ff98" />
// renders the Puff icon's mint green stroke with an opacity of 12.5%
<Puff stroke="#98ff98" strokeOpacity={.125} />
// renders the Puff icon at 75% speed with a mint green stroke with an opacity of 12.5%
<Puff stroke="#98ff98" strokeOpacity={.125} speed={.75} />
FAQs
React implementation of the SVG Loaders library by Sam Herbert
We found that react-loading-icons demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.