Github

Radio

Native radios. Same name for the group. .radio-group stacks them. There is no wrapper.

Preview

Code

<div class="radio-group" role="radiogroup" aria-label="Plan">
	<label class="label">
		<input class="radio" type="radio" name="plan" value="hobby" checked>
		Hobby
	</label>
	<label class="label">
		<input class="radio" type="radio" name="plan" value="pro">
		Pro
	</label>
</div>