File "card-overlay.js"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/elementor/app/assets/js/ui/card/card-overlay.js
File size: 335 bytes
MIME-type: text/x-java
Charset: utf-8

import './card.scss';

export default function CardOverlay( props ) {
	return (
		<div className={ `eps-card__image-overlay ${ props.className }` }>
			{ props.children }
		</div>
	);
}

CardOverlay.propTypes = {
	className: PropTypes.string,
	children: PropTypes.object.isRequired,
};

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