@armandoroman1016/react-multi-step-form
Version:
React Multi Step is a NPM package for easily building multi-step-forms with React. This package will provide you the Components and utilities to quickly build a multi-step-form.
20 lines (19 loc) • 607 B
TypeScript
/// <reference types="react" />
interface ProgressBarProps {
completedBackground?: string;
completeFontColor?: string;
activeBackground?: string;
activeFontColor?: string;
incompleteBackground?: string;
incompleteFontColor?: string;
errorBackground?: string;
errorFontColor?: string;
labelColor?: string;
font?: string;
completeLabelColor?: string;
activeLabelColor?: string;
errorLabelColor?: string;
incompleteLabelColor?: string;
}
declare const ProgressBar: (props: ProgressBarProps) => JSX.Element;
export default ProgressBar;