Drawer sheet content
Each item pairs a label and icon, with one selected.
ModalDrawerSheet {
NavigationDrawerItem(
label = { Text("Home") },
icon = { Icon(Icons.Filled.Home, null) },
selected = true,
onClick = {},
modifier = Modifier.padding(NavigationDrawerItemDefaults.ItemPadding)
)
// Favorites, Profile ...
}