You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
No description provided.
The text was updated successfully, but these errors were encountered: