@octopusdeploy/design-system-components
Version:
The design systems component library.
14 lines (13 loc) • 400 B
TypeScript
import type React from "react";
export interface StepperProps {
/**
* Set the active step (zero based index).
* Set to -1 to disable all the steps.
*/
activeStep?: number;
/**
* Two or more `<Step />` components.
*/
children: React.ReactNode;
}
export declare function Stepper({ activeStep, children }: StepperProps): import("react/jsx-runtime").JSX.Element;