import PropTypes from 'prop-types'; import React from 'react'; import { icons } from 'Helpers/Props'; import Link from 'Components/Link/Link'; import Icon from 'Components/Icon'; import styles from './ModalContent.css'; function ModalContent(props) { const { className, children, showCloseButton, onModalClose, ...otherProps } = props; return (
{ showCloseButton && } {children}
); } ModalContent.propTypes = { className: PropTypes.string, children: PropTypes.node, showCloseButton: PropTypes.bool.isRequired, onModalClose: PropTypes.func.isRequired }; ModalContent.defaultProps = { className: styles.modalContent, showCloseButton: true }; export default ModalContent;