{% 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 and (phone.type == 'office' or phone.type == 'fixe') %}
{% set labelHTML = '' %}
{% elseif icon and phone.type == 'mobile' %}
{% set labelHTML = '' %}
{% elseif icon and phone.type == 'fax' %}
{% set labelHTML = '' %}
{% elseif options.icon is defined %}
{% set labelHTML = '' %}
{% elseif entitled %}
{% set entitled = phone.type == 'fax' ? 'Fax.'|trans|raw : 'Tel.'|trans|raw %}
{% set labelHTML = '' ~ entitled ~ '' %}
{% 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 du numéro de téléphone"|trans|raw }}
{% endif %}