{% if module.logo.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.logo.size_type == 'auto' %}
		{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
	{% elif module.logo.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.logo.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}