@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
28 lines (23 loc) • 573 B
JavaScript
/**
* MSKCC 2021, 2024
*/
import PropTypes from 'prop-types';
import React__default from 'react';
import cx from 'classnames';
// Login Content controls the columns
const LoginContent = _ref => {
let {
className,
children
} = _ref;
const contentClass = cx('msk-login--content', className);
return /*#__PURE__*/React__default.createElement("div", {
className: contentClass
}, children);
};
LoginContent.displayName = 'LoginContent';
LoginContent.propTypes = {
className: PropTypes.string,
children: PropTypes.node
};
export { LoginContent };