UNPKG

@carbon/ibm-products

Version:
43 lines (41 loc) 1.63 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"; import { StructuredListRow } from "@carbon/react"; //#region src/components/DescriptionList/DescriptionListRow.jsx /** * Copyright IBM Corp. 2024, 2024 * * 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}--description-list__row`; const componentName = "DescriptionListRow"; let DescriptionListRow = React.forwardRef(({ children, className, ...rest }, ref) => { return /* @__PURE__ */ React.createElement(StructuredListRow, { className: (0, import_classnames.default)(blockClass, className), ref, ...getDevtoolsProps(componentName), ...rest }, children); }); DescriptionListRow.propTypes = { /** Provide the contents of the node */ children: PropTypes.node, /** Provide an optional class to be applied to the containing node */ className: PropTypes.string }; DescriptionListRow = pkg.checkComponentEnabled(DescriptionListRow, componentName); DescriptionListRow.displayName = componentName; //#endregion export { DescriptionListRow };