Radio

<label>
    <span>
        <input
            id=""
            name="radio"
            type="radio"
            class=""
            style=""
            value=""
            
            
            
            
        />
        <span class="Form-radio"></span>
        Radio
    </span>
</label>
<label>
    <span>
        <input
            id="{{id}}"
            name="{{name}}"
            type="radio"
            class="{{modifier}}"
            style="{{style}}"
            value="{{value}}"
            {{#if autofocus}} autofocus{{/if}}
            {{#if disabled}} disabled{{/if}}
            {{#if required}} required{{/if}}
            {{#if checked}} checked{{/if}}
        />
        <span class="Form-radio"></span>
        {{{label}}}
    </span>
</label>
{
  "id": null,
  "name": "radio",
  "placeholder": null,
  "value": null,
  "autofocus": null,
  "disabled": null,
  "required": null,
  "checked": null,
  "modifier": null,
  "style": null,
  "label": "Radio"
}

There are no notes for this item.