UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

15 lines (14 loc) 320 B
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; };