react-dynamic-stepper
Version:
Advanced and multi-feature react stepper component designed to be incredibly versatile for a variety of workflows and use cases.
21 lines (20 loc) • 612 B
TypeScript
import { FC, ReactNode } from 'react';
import { PalletInterface } from '../stepper';
export interface StepInterface {
isKeepIndicatorOnComplete?: boolean;
indicator: ReactNode;
label: string;
navigateToStepHandler: (index: number) => void;
index: number;
isActive: boolean;
isComplete: boolean;
isWarning?: boolean;
isError?: boolean;
isStepConnector: boolean;
isRightToLeftLanguage: boolean;
pallet?: PalletInterface;
disableStepHeaderClick?: boolean;
isVertical?: boolean;
customConnector?: ReactNode;
}
export declare const Step: FC<StepInterface>;