{% for item in module.logos.company_logo %}
	{% if item.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}
{% set href = module.logos.link_field.url.href %}
{% if module.logos.link_field.url.type is equalto "EMAIL_ADDRESS" %}
  {% set href = "mailto:" + href %}
{% elif module.logos.link_field.url.type is equalto "PHONE_NUMBER" %}
  {% set href = "tel:" + href %}
{% endif %}
<a
  {% if module.logos.link_field.url.type is equalto "CALL_TO_ACTION"  %}
    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
  {% else %}
    href=""
  {% endif %}
  {% if module.logos.link_field.open_in_new_tab %}
    target="_blank"
  {% endif %}
  {% if module.logos.link_field.rel %}
    rel=""
  {% endif %}
  >
  Link text
</a>