{#
Copyright 2024, 2025 New Vector Ltd.
Copyright 2021-2024 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
-#}
{% macro link(text, href="#", class="", size="lg") %}
  {{ text }}
{% endmacro %}
{% macro link_text(text, href="#", class="") %}
  {{ text }}
{% endmacro %}
{% macro link_outline(text, href="#", class="", size="lg") %}
  {{ text }}
{% endmacro %}
{% macro link_tertiary(text, href="#", class="", size="lg") %}
  {{ text }}
{% endmacro %}
{% macro button(
  text,
  name="",
  type="submit",
  class="",
  value="",
  disabled=False,
  kind="primary",
  size="lg",
  autocomplete=False,
  autocorrect=False,
  autocapitalize=False) %}
  
{% endmacro %}
{% macro button_text(
  text,
  name="",
  type="submit",
  class="",
  value="",
  disabled=False,
  autocomplete=False,
  autocorrect=False,
  autocapitalize=False) %}
  
{% endmacro %}
{% macro button_outline(
  text,
  name="",
  type="submit",
  class="",
  value="",
  disabled=False,
  size="lg",
  autocomplete=False,
  autocorrect=False,
  autocapitalize=False) %}
  
{% endmacro %}