package components type FormRadio struct { Label string AllRadios []FormRadioItem } type FormRadioItem struct { ID string Name string Value string Label string IsDisabled bool IsChecked bool }