@carbon/react
Version:
React components for the Carbon Design System
59 lines (51 loc) • 2.06 kB
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
var cx = require('classnames');
var PropTypes = require('prop-types');
var React = require('react');
var usePrefix = require('../../internal/usePrefix.js');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
/**
* Helper component for rendering content that hangs on the column. Useful when
* trying to align content across different gutter modes
*/
function ColumnHang({
as: BaseComponent = 'div',
className: customClassName,
children,
...rest
}) {
const prefix = usePrefix.usePrefix();
const className = cx__default["default"](customClassName, `${prefix}--grid-column-hang`);
// cast as any to let TypeScript allow passing in attributes to base component
const BaseComponentAsAny = BaseComponent;
return /*#__PURE__*/React__default["default"].createElement(BaseComponentAsAny, _rollupPluginBabelHelpers["extends"]({}, rest, {
className: className
}), children);
}
ColumnHang.propTypes = {
/**
* Provide a custom element to render instead of the default <div>
*/
as: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].elementType]),
/**
* Pass in content that will be rendered within the `Grid`
*/
children: PropTypes__default["default"].node,
/**
* Specify a custom className to be applied to the `Grid`
*/
className: PropTypes__default["default"].string
};
const ColumnHangComponent = ColumnHang;
exports.ColumnHang = ColumnHangComponent;