Toggles
Switches
Checkboxes
Radio
Rating display
Usage
<FluentSwitch @bind-Value="notifications" Label="Notifications" />
<FluentCheckbox @bind-Value="subscribed" Label="Subscribe to updates" />
<FluentRadioGroup TValue="string" @bind-Value="selected" Orientation="Orientation.Horizontal">
    <FluentRadio Value="@("A")">Option A</FluentRadio>
    <FluentRadio Value="@("B")">Option B</FluentRadio>
</FluentRadioGroup>
<FluentRatingDisplay Value="4.2" Max="5" Count="128" Compact="true" />