Your IP : 18.119.112.17


Current Path : /var/www/wptbox/wp-content/plugins/astra-sites/inc/lib/ai-builder/inc/assets/src/components/
Upload File :
Current File : /var/www/wptbox/wp-content/plugins/astra-sites/inc/lib/ai-builder/inc/assets/src/components/tile.js

import { classNames } from '../helpers';

const Tile = ( { className, onClick, children } ) => {
	const handleOnClick = ( event ) => {
		if ( typeof onClick === 'function' ) {
			onClick( event );
		}
	};

	return (
		<div
			onClick={ handleOnClick }
			className={ classNames( className ) }
			aria-hidden="true"
		>
			{ children }
		</div>
	);
};

export default Tile;