File "modal-section.js"

Full Path: /home/warrior1/public_html/plugins/elementor/app/assets/js/ui/modal/modal-section.js
File size: 379 bytes
MIME-type: text/x-java
Charset: utf-8

import { arrayToClassName } from '../../utils/utils';

export default function ModalSection( props ) {
	return (
		<section className={ arrayToClassName( [ 'eps-modal__section', props.className ] ) }>
			{ props.children }
		</section>
	);
}

ModalSection.propTypes = {
	className: PropTypes.string,
	children: PropTypes.any,
};

ModalSection.defaultProps = {
	className: '',
};