@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
29 lines (25 loc) • 592 B
JavaScript
/**
* MSKCC 2021, 2024
*/
import PropTypes from 'prop-types';
import React__default from 'react';
import cx from 'classnames';
const LoginSection = _ref => {
let {
children,
className,
noPadding
} = _ref;
const classes = cx('msk-login--section', className, {
'msk-login--section--full': noPadding
});
return /*#__PURE__*/React__default.createElement("section", {
className: classes
}, children);
};
LoginSection.displayName = 'LoginSection';
LoginSection.propTypes = {
className: PropTypes.string,
children: PropTypes.node
};
export { LoginSection };