<span class="input-icon-overlay icon-chevron-right icon-before">  <input type="text"
    placeholder="Icon before"
    
    
    id="some-id"
     />
</span>
{% set input %}
  <input type="{{ type }}"
    {{ placeholder ? 'placeholder="' ~ placeholder ~ '"' }}
    {{ value ? 'value="' ~ value ~ '"' }}
    {{ class ? 'class="' ~ class ~ '"' }}
    {{ id ? 'id="' ~ id ~ '"' }}
    {{ attr ? attr }} />
{% endset %}

{% if overlay_icon %}
  <span class="input-icon-overlay {{ overlay_icon }}">{{ input }}</span>
{% else %}
  {{ input }}
{% endif %}
{
  "type": "text",
  "placeholder": "Icon before",
  "value": null,
  "id": "some-id",
  "overlay_icon": "icon-chevron-right icon-before"
}

There are no notes for this item.