UNPKG

@octopusdeploy/design-system-components

Version:
21 lines (20 loc) 711 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DeprecatedModal = DeprecatedModal; const jsx_runtime_1 = require("react/jsx-runtime"); const css_1 = require("@emotion/css"); const material_1 = require("@mui/material"); /* @deprecated Deprecated: 13/01/2026 Replacement: Dialog components Reason: This component is deprecated and will be removed in a future release. */ function DeprecatedModal({ open, className, children }) { return ((0, jsx_runtime_1.jsx)(material_1.Modal, { open: open, className: (0, css_1.cx)(styles, className), children: children })); } const styles = (0, css_1.css)({ "&&": { zIndex: "auto", isolation: "isolate", }, });