{% if module.right_side.image_field.src %}
	{% set sizeAttrs = 'width="" height=""' %}
	{% if module.right_side.image_field.size_type == 'auto' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% elif module.right_side.image_field.size_type == 'auto_custom_max' %}
		{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
	{% endif %}
	 {% set loadingAttr = module.right_side.image_field.loading != 'disabled' ? 'loading=""' : '' %}
	<img src="" alt=""  >
{% endif %}
{% for item in module.right_side.icon_images %}
	{% 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 %}