@octopusdeploy/design-system-components
Version:
The design systems component library.
18 lines (17 loc) • 755 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.LegacyDialogActions = LegacyDialogActions;
const jsx_runtime_1 = require("react/jsx-runtime");
const DialogActions_1 = __importDefault(require("@mui/material/DialogActions"));
/**
* @deprecated
* Deprecated: 28/05/2026
* Replacement: Use workflows in Portal, or Dialog otherwise
* Reason: This component is deprecated and will be removed in a future release.
*/
function LegacyDialogActions({ className, children }) {
return (0, jsx_runtime_1.jsx)(DialogActions_1.default, { className: className, children: children });
}