React stepper component from InJung Chung <mu29@yeoubi.net>
npm install react-stepper-horizontal-with-classes
npm install react-stepper-horizontal --save
`
Then just add import Stepper from 'react-stepper-horizontal'; into your file.Screenshot

Usage
`
render() {
return (
);
}
`See full example here
4 classes had been added from the original work of InJung Chung (@mu29) to customize the steps circles and titles easily in your project:
- stepper-circle-completed
- stepper-circle-unstarted
- stepper-title-completed
- stepper-title-unstarted
API
$3
| name | description | default | type |
|----------|----------------|--------------|--------|
|activeStep|Active step index, starts at 0|0|number|
|steps|List of step objects (see below)||array|
|activeColor|Active circle color|#5096FF|string|
|completeColor|Completed circle color|#5096FF|string|
|defaultColor|Default circle color - not active or completed|#E0E0E0|string|
|activeTitleColor|Active title color|#000|string|
|completeTitleColor|Completed title color|#000|string|
|defaultTitleColor|Default title color - not active or completed|#757575|string|
|circleFontColor|Circle text color (for index)|#FFF|string|
|size|Circle size|32|number|
|circleFontSize|Circle text size|16|number|
|titleFontSize|Title text size|16|number|
|circleTop|Top margin of
Stepper` component|24|number|InJung Chung / @mu29