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

OutlinedIconButton

Wear Material OutlinedIconButton is a circular, icon-only button with a transparent background, contrasting icon color and border.

OutlinedIconButton social preview

OutlinedIconButtonSample

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

Last updated: