UNPKG

@uva-glass/component-library

Version:

React components UvA

12 lines (11 loc) 504 B
export interface OverlayStepBarProps { /** Array of strings. */ stepLabels: string[]; /** activeStep number starting with 1. */ activeStep: number; /** Array of prefix numbers to not show in the steplabels */ disabledCountPrefix?: number[]; /** navigate to step. */ onStepClick?: (step: number) => void; } export declare const OverlayStepBar: ({ stepLabels, activeStep, disabledCountPrefix, onStepClick, }: OverlayStepBarProps) => import("react/jsx-runtime").JSX.Element;