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