{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% import "building-blocks/button/button-macros.njk" as button %}

{# ========================================================================== #}
{# :: Settings #}
{# ========================================================================== #}
{% set params = {
	isFullWidth: false,
	styleVendors: [],
	scriptVendors: [],
	order: 1,
	scope: "s-bp-button"
} %}

{# ========================================================================== #}
{# :: Info #}
{# ========================================================================== #}
{# {% set info %}

{% endset %} #}

{# ========================================================================== #}
{# :: Preview #}
{# ========================================================================== #}
{% set preview %}

{{button.default("", {
	text: "Primary button"
})}}

{{button.default("", {
	text: "Primary button",
	isDisabled: true
})}}

{{button.default("", {
	text: "Primary button",
	icon: { before: "icon-arrow-down" }
})}}

{{button.default("", {
	text: "Primary button",
	icon: { after: "icon-arrow-down" }
})}}

{{button.default("", {
	text: "Primary button",
	icon: { before: "icon-arrow-down", after: "icon-arrow-down" }
})}}

{% endset %}

{# ========================================================================== #}
{# :: Code #}
{# ========================================================================== #}
{% set code %}

{{button.default("", {
	text: "Primary button",
	icon: { before: "icon-arrow-down", after: "icon-arrow-down" }
})}}

{% endset %}
