Components
These components demonstrate how to build scalable semantic UI with TailUI.
Radio
Radio buttons with group layout and custom styling.
Preview
Code
1<div class="ui-radio-group">2 <label class="ui-radio">3 <input type="radio" name="framework" checked />4 React5 </label>6 <label class="ui-radio">7 <input type="radio" name="framework" />8 Vue9 </label>10 <label class="ui-radio">11 <input type="radio" name="framework" />12 Svelte13 </label>14</div>