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

LeadingIconTab

Kotlin
@Composable
fun LeadingIconTabSample() {
    var selected by remember { mutableStateOf(true) }

    LeadingIconTab(
        selected = selected,
        onClick = { selected = !selected },
        text = { Text("Favorites") },
        icon = { Icon(Icons.Filled.Favorite, contentDescription = null) },
    )
}