@kelvininc/ui-components
Version:
Kelvin UI Components
7 lines (6 loc) • 315 B
TypeScript
export interface IStepProgressBar {
/** (required) Defines how much space the progress bar should fill */
progressPercentage: number;
/** (optional) Defines if the bar should be in an error state, setting to `true` will change the background color to the defined error color */
hasError: boolean;
}