ui-mathilde-web 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -318,6 +318,16 @@ declare interface SpinnerProps {
318
318
  description?: string;
319
319
  }
320
320
 
321
+ export declare const Stepper: ({ steps }: StepperProps) => JSX_2.Element;
322
+
323
+ declare interface StepperProps {
324
+ steps: {
325
+ title: string;
326
+ description: string;
327
+ status: 'completed' | 'current' | 'pending';
328
+ }[];
329
+ }
330
+
321
331
  declare interface SubMenuSection {
322
332
  id: string;
323
333
  label: string;