decentraland-ui
Version:
Decentraland's UI components and styles
16 lines (15 loc) • 352 B
TypeScript
/// <reference types="react" />
export declare type Step = {
title: string;
description?: string;
isLoading?: boolean;
message?: string | JSX.Element;
action?: string;
actionDescription?: string;
testId?: string;
onActionClick: () => void;
};
export declare type Props = {
steps: Step[];
currentStep: number;
};