Your IP : 13.58.216.183


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/logo.js

import { __ } from '@wordpress/i18n';
import { whiteLabelEnabled, getWhileLabelName } from '../utils/functions';
const { imageDir, logoUrlLight } = aiBuilderVars;
const url = logoUrlLight || `${ imageDir }logo.svg`;

const Logo = () => {
	return (
		<div className="branding-wrap">
			{ whiteLabelEnabled() ? (
				<h3>{ getWhileLabelName() }</h3>
			) : (
				<a
					className="flex items-center justify-center w-11 h-11"
					href="#"
					rel="noopener noreferrer"
				>
					<img
						className="w-full h-full"
						src={ url }
						alt={ __( 'Starter Templates', 'ai-builder' ) }
					/>
				</a>
			) }
		</div>
	);
};

export default Logo;