<span class="inline-block mb-1 text-base font-bold md:mb-3 md:text-lg">
{% if preHeadlineIconActive is defined and overrideIcon is not defined %}
{{ pimcore_image('preHeadlineIconActive',
{
'thumbnail': 'icon',
}) |raw }}
{% endif %}
{% if overrideIcon is defined and overrideIcon is not empty %}
<span class="block w-12 h-12 mb-3">
{{ overrideIcon.thumbnail('icon').html|raw }}
</span>
{% endif %}
{% if editmode %}
{{ pimcore_input("headline", {'placeholder': defaultHeadline ?? "Headline"}) }}
{% else %}
{{ renderOrDefault(pimcore_input("headline").getData(), defaultHeadline ?? "") }}
{% endif %}
</span>