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

FilledTonalIconButton

Wear Material FilledTonalIconButton is a circular, icon-only button with a muted, colored background and a contrasting icon color.

FilledTonalIconButton social preview

FilledTonalIconButtonSample

@Composable
@Sampled
fun FilledTonalIconButtonSample() {
    FilledTonalIconButton(onClick = { /* Do something */ }) {
        Icon(imageVector = Icons.Filled.Favorite, contentDescription = "Favorite icon")
    }
}