UNPKG

@octopusdeploy/design-system-components

Version:
11 lines (10 loc) 421 B
interface DialogStepIndicatorProps { totalSteps: number; currentStepIndex: number; } /** * Text-style step indicator for multi-step dialogs. * Displays "X of Y" with hidden accessible text of "Step" for additional context for assistive technologies. */ export declare function DialogStepIndicator({ totalSteps, currentStepIndex }: DialogStepIndicatorProps): import("react/jsx-runtime").JSX.Element; export {};