@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
24 lines • 597 B
TypeScript
import { WizardProps } from './interfaces';
interface NavigationProps {
activeStepIndex: number;
farthestStepIndex: number;
allowSkipTo: boolean;
hidden: boolean;
i18nStrings: WizardProps.I18nStrings;
isLoadingNextStep: boolean;
onStepClick: (stepIndex: number) => void;
onSkipToClick: (stepIndex: number) => void;
steps: ReadonlyArray<WizardProps.Step>;
}
export default function Navigation({
activeStepIndex,
farthestStepIndex,
allowSkipTo,
hidden,
i18nStrings,
isLoadingNextStep,
onStepClick,
onSkipToClick,
steps
}: NavigationProps): JSX.Element;
export {};