{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% import "components/icon.njk" as icon %}

{# ========================================================================== #}
{# :: Default #}
{# ========================================================================== #}
{% macro default(classes, data) %}

	<a class="bp-c-link {{classes}}" href="{{data.url}}" {% if data.target %}target="{{data.target}}"{% endif %}>
		{% if data.iconBefore %}
			{{icon.default("bp-c-link__icon bp-c-link__icon--before", data.iconBefore)}}
		{% endif %}

		<span class="bp-c-link__text {{data.textClasses}}">{{data.text}}</span>

		{% if data.iconAfter %}
			{{icon.default("bp-c-link__icon bp-c-link__icon--after", data.iconAfter)}}
		{% endif %}
	</a>

{% endmacro %}
