you can achieve it by using renderStepIndicator method
here is an example
<StepIndicator customStyles={customStyles} currentPosition={currentStep} labels={labels} stepCount={3} renderStepIndicator={this.renderStepText} />
and here is the method to render your icon
renderStepText = ({ position, stepStatus }) { return <Icon name="search" /> }
//position is your current step position, you can check it
// step status is status for your current position = finished || current || unfinished you can create condition based on it
you can achieve it by using renderStepIndicator method here is an example
<StepIndicator customStyles={customStyles} currentPosition={currentStep} labels={labels} stepCount={3} renderStepIndicator={this.renderStepText} />
and here is the method to render your icon
renderStepText = ({ position, stepStatus }) { return <Icon name="search" /> }
//position is your current step position, you can check it // step status is status for your current position = finished || current || unfinished you can create condition based on it