UNPKG

@carbon/ibm-products

Version:
56 lines (54 loc) 1.89 kB
/** * Copyright IBM Corp. 2020, 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import { __toESM } from "../../_virtual/_rolldown/runtime.js"; import { require_classnames } from "../../node_modules/classnames/index.js"; import { pkg } from "../../settings.js"; import { getDevtoolsProps } from "../../global/js/utils/devtools.js"; import React from "react"; import PropTypes from "prop-types"; //#region src/components/EditTearsheetNarrow/EditTearsheetNarrow.tsx /** * Copyright IBM Corp. 2022, 2022 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ var import_classnames = /* @__PURE__ */ __toESM(require_classnames()); const blockClass = `${pkg.prefix}--edit-tearsheet-narrow`; const componentName = "EditTearsheetNarrow"; /** * **This component is deprecated.** <br> * Use a narrow tearsheet as an alternative to a modal when there is scrolling. See usage guidance for further information. * @deprecated */ const EditTearsheetNarrow = React.forwardRef(({ children, className, ...rest }, ref) => { return /* @__PURE__ */ React.createElement("div", { ...rest, className: (0, import_classnames.default)(blockClass, className, {}), ref, role: "main", ...getDevtoolsProps(componentName) }, children); }); /**@ts-ignore*/ EditTearsheetNarrow.deprecated = { level: "warn", details: `This component is deprecated and will be removed in the next major version.` }; EditTearsheetNarrow.displayName = componentName; EditTearsheetNarrow.propTypes = { /** * Provide the contents of the EditTearsheetNarrow. */ children: PropTypes.node.isRequired, /** * Provide an optional class to be applied to the containing node. */ className: PropTypes.string }; //#endregion export { EditTearsheetNarrow };