🌈 Create new beautiful Compose Gradients with our new wesite ->

NavigationRailItem

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