{% trans_default_domain 'front' %}
{% set hasBtn = options.btn is defined %}
{% set btnClasses = hasBtn ? " btn btn-" ~ options.btn ~ " hbtn hb-fill-right" : null %}
{% set labelHTML = '' %}
{% if icon %}
{% set labelHTML = '' %}
{% elseif options.icon is defined %}
{% set labelHTML = '' %}
{% elseif options.img is defined and options.webpack is defined %}
{% set width = options.width is defined ? options.width : 20 %}
{% set height = options.height is defined ? options.height : 20 %}
{% set labelHTML = '
' %}
{% endif %}
{% if not hasBtn and labelHTML %}
{{ labelHTML|raw }}
{% endif %}
{% if hasBtn and labelHTML %}
{{ labelHTML|raw }}
{% endif %}
{% if options.text is defined %}
{{ options.text }}
{% else %}
{{ "Chargement de l'adresse mail"|trans|raw }}
{% endif %}