{% for item in module.menu_icons %}
	{% if item.icon.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.icon.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.icon.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.icon.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	
	{% inline_text field="description" value="" %}
{% endfor %}