"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Stepper = void 0;
const styled_components_1 = __importDefault(require("styled-components"));
const box_1 = __importDefault(require("../../atoms/box"));
const css_class_1 = require("../../utils/css-class");
/**
* @classdesc
*
*
*
* It provides wizard workflow where user can go through a couple of steps.
* Stepper makes sense when you use it along with {@link Step} component.
*
* It receives all the same props as {@link Box} - {@link BoxProps}.
*
* ### Usage
*
* ```javascript
* import { Stepper, StepperProps } from '@adminjs/design-system'
* ```
*
* @component
* @subcategory Molecules
* @hideconstructor
* @see {@link https://storybook.adminjs.co/?path=/story/designsystem-molecules-stepper--clickable-steps Storybook}
* @example