@carbon/react
Version:
React components for the Carbon Design System
49 lines (45 loc) • 1.49 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.
*/
import { extends as _extends } from '../../_virtual/_rollupPluginBabelHelpers.js';
import cx from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
import { usePrefix } from '../../internal/usePrefix.js';
/**
* 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();
const className = cx(customClassName, `${prefix}--grid-column-hang`);
// cast as any to let TypeScript allow passing in attributes to base component
const BaseComponentAsAny = BaseComponent;
return /*#__PURE__*/React.createElement(BaseComponentAsAny, _extends({}, rest, {
className: className
}), children);
}
ColumnHang.propTypes = {
/**
* Provide a custom element to render instead of the default <div>
*/
as: PropTypes.oneOfType([PropTypes.string, PropTypes.elementType]),
/**
* Pass in content that will be rendered within the `Grid`
*/
children: PropTypes.node,
/**
* Specify a custom className to be applied to the `Grid`
*/
className: PropTypes.string
};
const ColumnHangComponent = ColumnHang;
export { ColumnHangComponent as ColumnHang };