@octopusdeploy/design-system-components
Version:
The design systems component library.
13 lines (12 loc) • 567 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Step = Step;
const jsx_runtime_1 = require("react/jsx-runtime");
const Step_1 = __importDefault(require("@mui/material/Step"));
function Step({ children, ...props }) {
// MUI injects some additional props to Step so we must spread in any excess props.
return (0, jsx_runtime_1.jsx)(Step_1.default, { ...props, children: children });
}