<div class="contact-bar">
<div class="contact-bar__inner">
{% if headline is defined or text is defined%}
<div class="contact-bar__description">
{% if headline is defined %}
<div class="contact-bar__title">
{# atoms/headline #}
{{ render_storyblok(headline, {
class: 'headline--no-spacing contact-bar__headline',
}) }}
</div>
{% endif %}
{% if text is defined %}
<div class="contact-bar__text">
{# atoms/paragraph #}
{{ render_storyblok(text, {
class: 'paragraph--no-margin paragraph--desktop-margin-auto',
}) }}
</div>
{% endif %}
</div>
{% endif %}
{% if contactIcon is defined and contactTitle is defined and contactPhone is defined %}
<div class="contact-bar__hotline">
{% include('components/molecules/hotline/hotline.html.twig') with {
class: 'hotline--simple',
icon: contactIcon,
title: contactTitle,
phone: contactPhone,
openings: false,
} %}
</div>
{% endif %}
{% if button is defined %}
<div class="contact-bar__action">
{# atoms/text-link #}
{{ render_storyblok(button, {
class: 'button button--multitool button--full-width button--transparent',
modifier: 'js-modal'
}) }}
</div>
{% endif %}
</div>
</div>