🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@idui/react-progress

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@idui/react-progress

React Progress Component

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Progress React Component

NPM Size JavaScript Style Guide LICENSE

Install

npm install --save @idui/react-progress
yarn add @idui/react-progress

Circular Progress

  • Docs
  • Playground
  • you can configure custom icons for circular progress (install @idui/react-icon and configureIcons)
  • "progressCircle", "longLinesProgressCircle" and "shortLinesProgressCircle" are available by default
import React from 'react'
import { CircularProgress } from '@idui/react-progress'

function Example() {
  return <CircularProgress 
      name="longLinesProgressCircle" // default progressCircle
      color="orangered" // default #9552D4
      size="3.5rem"  // default 3rem
      duration={1000} // default 1500
  />
}

Linear Progress

import React from 'react'
import { LinearProgress } from '@idui/react-progress'

function Example() {
  return <LinearProgress
      color="orangered" // default #9552D4
      duration={1000} // default 1500
      length="50rem" // default 100%
      orientation="vertical" // default "horizontal"
      size="1rem" // default 0.5rem
  />
}

License

MIT © kaprisa57@gmail.com

FAQs

Package last updated on 26 Feb 2021

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