@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
14 lines • 368 B
TypeScript
import React from 'react';
export type StepItem = {
title: string;
breakPoint?: boolean;
};
export type StepProps = StepItem & {
index: number;
size: 'large' | 'small';
type: 'active' | 'disabled' | 'done';
onClick?: () => void;
noReturnMessage?: string;
};
export declare const Step: React.FC<StepProps>;
//# sourceMappingURL=step.d.ts.map