UNPKG

@octopusdeploy/design-system-components

Version:
14 lines (13 loc) 400 B
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;