UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

16 lines (14 loc) 273 B
export type Step = { title: string description?: string isLoading?: boolean message?: string | JSX.Element action?: string actionDescription?: string testId?: string onActionClick: () => void } export type Props = { steps: Step[] currentStep: number }