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

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

	<button class="bp-c-back-button {{classes}} {{'bp-js-overlay-trigger' if data.overlay}}" {% if data.overlay %}data-overlay-target="{{data.overlay.id}}" data-overlay-type="{{data.overlay.type}}"{% endif %}>
		{{icon.default("bp-c-back-button__icon", { name:  "chevron-left" })}}

		<span class="bp-c-back-button__text">{{data.text}}</span>
	</button>

{% endmacro %}
