Skip to content

Progress

EProgress The progress indicator represents the present state of a process or a level of achievement. Demo Here

Import

jsx
import EProgress from "@components/Elements/EProgress";

Usage

jsx
<EProgress fill={50}/>

Props

For EProgress component, the following props are available:

PropTypeDefaultNote
width[String, Number]-Sets the component's width. Default unit is px.
height[String, Number]-Sets the component's height. Default unit is px.
roundedBooleanfalseIt creates a circular progress.
squareBooleanfalseRemoves rounded corners of the element.
showPercentageBooleantrueShows the percentage of progress if true.
fill[Number, String]0Displays the level of completion.
classNameString-Overrides or extends the component's wrapper styles.
sizeString"md"The EProgress element has three predefined sizes: sm, md, lg.
variantString"fill"The EProgress element can be represented in two ways: fill and gradient. Gradient displays smooth transitions between light and dark shades of specified color.
colorString"primary"The given color is applied to the progress - utility colors are supported (e.g primary or danger). you'll find a list of built-in classes on the src/styles/_vars.scsspage.
titleString-Displays title.

COPYRIGHT