package components type FormCheckbox struct { Label string AllCheckbox []FormCheckboxItem } type FormCheckboxItem struct { ID string Name string Value string Label string IsChecked bool }