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

IconButton

IconButton is a clickable icon, used to represent actions.

IconButtonSample

@Sampled
@Composable
fun IconButtonSample() {
    IconButton(onClick = { /* doSomething() */ }) {
        Icon(Icons.Filled.Favorite, contentDescription = "Localized description")
    }
}