NavigationRailItem

Component.kt
@Composable
fun NavigationRailItemSample() {
    NavigationRailItem(
        selected = true,
        onClick = {},
        icon = { Icon(Icons.Filled.Home, contentDescription = null) },
        label = { Text("Home") },
    )
}