Radio Button
A radio button lets users choose one option from a group of options. When they pick one, any previously selected option is deselected. This way, users can only select one option at a time.
Radio buttons are commonly used in forms and surveys when users need to pick just one choice from a list.
Compnent Demo
<div class="form-check primary-radio">
<input class="form-check-input" type="radio" name="flexRadioDefault1A" id="flexRadioDefault1">
<label class="form-check-label" for="flexRadioDefault1">Section Title</label>
</div>