class SimpleForm::Inputs::CollectionCheckBoxesInput

def build_nested_boolean_style_item_tag(collection_builder)

def build_nested_boolean_style_item_tag(collection_builder)
  collection_builder.check_box + collection_builder.text.to_s
end

def has_required?

More info: https://github.com/heartcombo/simple_form/issues/340#issuecomment-2871956
Checkbox components do not use the required html tag.
def has_required?
  false
end

def item_wrapper_class

def item_wrapper_class
  "checkbox"
end