progressbar with many customizations
npm install @acodez/progressbarReact progressbar with many customizations.
-----
- Installation
- PropsAPI
- Usage
-----
``bash`
npm install @acodez/progressbar
| Property | Type | Required | Description |
|-----|-----|-----|:-----|
|progress|string|yes|progress value, example 30|string
|color||no|color scheme, choose from primary, secondary, warning, success, danger, info, dark, light|string
|type||no|choose from normal, striped, animate, animate-striped|string
|size||no|size (height) of progressbar, choose from xs, sm, md, lg|string
|ShowProgressCount||no|whether count need to show near to bar|string
|CountPosition||no|progress count position, choose from overlay, right, left|string
|corner||no|progressbar border radius, square or rounded|
-----
`jsx`
import Progressbar from "@acodez/progressbar";
Basic
`jsx`
Animating progressbar
`jsx`
Striped progressbar
`jsx`
Striped with animation
`jsx `
With progress text
`jsx`
Text position to right
`jsx`
Changing the color theme
`jsx`
Changing the size - height
`jsx`
Changing the border radius
`jsx``