Files
notifications-admin/app/templates/components/us_components/radio-label/template.njk
2023-08-14 10:35:11 -04:00

16 lines
540 B
Plaintext

{% if params.html or params.text %}
{% set labelHtml %}
<label class="usa-checkbox__label {%- if params.classes %}{{ params.classes }}{% endif %}"
{%- for attribute, value in params.attributes %} {{attribute}}="{{value}}"{% endfor %}
{%- if params.for %} for="{{ params.for }}"{% endif %}>
{{ params.html | safe if params.html else params.text }}
</label>
{% endset %}
{% if params.isPageHeading %}
<h1 class="font-body-2xl text-bold">{{ labelHtml | safe | indent(2) }}</h1>
{% else %}
{{ labelHtml | safe }}
{% endif %}
{% endif %}