New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-progress-icons

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-progress-icons

React icons for task progress visualization

latest
npmnpm
Version
1.0.3
Version published
Maintainers
0
Created
Source

React Progress Icons

A collection of beautiful progress indicators component to use in your React projects.

Installation

npm install react-progress-icons

Usage

import { Ring } from 'react-progress-icons';

function MyComponent() {
  return <Ring progress={0.75} className="size-8 text-blue-600" />;
}

Development

Building the Library

npm run build

Local Development and Preview

To test and preview your components locally:

  • Install dependencies:
npm install
  • Start the preview development server:
npm run preview

This will start a development server at http://localhost:3000 where you can:

  • See your components in action
  • Test different props and configurations
  • View usage examples
  • Interact with the components

Available Scripts

  • npm run build - Build the library for distribution
  • npm run dev - Watch mode for library development
  • npm run preview - Start the preview development server
  • npm run preview:build - Build the preview for production
  • npm run preview:preview - Preview the built preview

Components

Ring

A circular progress indicator.

Props

  • progress (number, required): Progress value between 0 and 1
  • className (string, optional): Pass tailwind classes to the ring to control size and color. If color is not passed it'll inherit the color from the parent.
  • thickness (string, optional): Thickness of the ring (thin, medium, thick)

Example

<Ring 
  progress={0.75} 
  className="size-12 text-blue-600" 
  thickness="thin"
/>

License

MIT

Keywords

react

FAQs

Package last updated on 23 Jul 2025

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