AlertDialog
In Material 3 Compose
@Composable
fun NavigationRailItemSample() {
NavigationRailItem(
selected = true,
onClick = {},
icon = { Icon(Icons.Filled.Home, contentDescription = null) },
label = { Text("Home") },
)
}