Compose Unstyled 2.0 is out! Check the official announcement blog ->
Compose Component

IconButton

IconButton is a component used for exposing supplementary actions with a single tap.

IconButtonSample

@Composable
fun IconButtonSample() {
    IconButton(onClick = {}) { Icon(FavoriteIcon, "Localized description") }
}

Last updated: