{% if componentKey is not defined %}
{% set componentKey = "footer_signature" %}
{% endif %}
{% set item_config = generateComponentOptions(value, componentKey)%}
{% if canDisplayComponentByAcl(item_config) %}
<div class="footer-signature {% if value.class is defined %}{{ value.class }}{% endif %}">
{% embed '@component/_template/_atom_wrapper.html.twig' with {value: value.text, atom_key: componentKey ~ '.text'} %}
{% block atom %}
{% include '@component/atom/paragraph.html.twig' with {'value': value} %}
{% endblock atom %}
{% endembed %}
{% embed '@component/_template/_atom_wrapper.html.twig' with {value: value.link, atom_key: componentKey ~ '.link'} %}
{% block atom %}
{% include '@component/atom/link.html.twig' with {'link': value} %}
{% endblock atom %}
{% endembed %}
</div>
{% endif %}