{% set title = 'external'|trans %}
{% if auction.link and auction.link.direct %}
{% set btnLabel = auction.link.text|default(auction.link.direct|url_meta_title) %}
{% embed 'network/widget/widget.html.twig' %}
{% import 'macros/button.macro.twig' as button %}
{% block content %}
<div class="flex items-center text-neutral-900">
{{ button.link(btnLabel, 'primary', auction.link.direct, { size: 'sm', icon_before: 'weblink', attr: { target: '_blank', class: 'w-full' }}) }}
</div>
{% endblock %}
{% endembed %}
{% endif %}