react-progress-steps-peacock
v0.0.11
Published
react component
Downloads
4
Maintainers
Readme
react-progress-steps
react-progress-steps
Quick Start
npm install react-progress-steps --save
<ProgressSteps steps={5} current={1} />
You can disable the custom styling and use your own css. This will render divs with appropriate classes but no styling at all.
<ProgressSteps steps={5} current={1} styling={false} />
.ProgressSteps {
&-Step {
/* ... */
&-activated {
/* ... */
}
&-deactivated {
/* ... */
}
&-current {
/* ... */
}
}
&-Line {
/* ... */
&-activated {
/* ... */
}
&-deactivated {
/* ... */
}
}
}