@ultraviolet/plus
Version:
Ultraviolet Plus
18 lines (17 loc) • 439 B
TypeScript
type StepProps = {
/**
* The number of the step, max 5 steps.
*/
stepNumber: number;
/**
* Title of the step
*/
stepTitle: string;
/**
* State of the step
*/
completed: boolean;
'data-testid'?: string;
};
export declare const SteppedList: ({ stepNumber, stepTitle, completed, "data-testid": dataTestId, }: StepProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};