MultiSelectBottomSheet

fun MultiSelectBottomSheet(items: List<CheckBoxData>, title: String, maxItemsToShow: Int = MAX_CHECKBOXES_ITEMS_TO_SHOW, noResultsFoundString: String, searchToFindMoreString: String, doneButtonText: String, windowInsets: @Composable () -> WindowInsets = { BottomSheetShellDefaults.windowInsets() }, onItemsSelected: (List<CheckBoxData>) -> Unit, onDismiss: () -> Unit)