<input type="radio" id="radio-choice" name="choice" value="yes" class="js-fr-dialogmodal-open u-visuallyhidden" aria-controls="dialog-button">
<label class="is-negative" for="radio-choice">Radio label text</label>
<input
type="radio"
id="{{ id }}"
name="{{ name }}"
value="{{ value }}"
class="{{ input-class }} u-visuallyhidden"
{{#if checked }}
checked="true"
{{/if}}
{{#if data-toggle }}
data-toggle="{{ data-toggle }}"
{{/if}}
{{#if aria-controls }}
aria-controls="{{ aria-controls }}"
{{/if}}
{{#if onclick }}
onclick="{{ onclick }}"
{{/if}}
>
<label class="{{ label-class }}" for="{{ id }}">{{{ text }}}</label>
{
"id": "radio-choice",
"name": "choice",
"value": "yes",
"text": "Radio label text",
"input-class": "js-fr-dialogmodal-open",
"aria-controls": "dialog-button",
"label-class": "is-negative"
}
No notes defined.