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

CompactButton

PREVIEW IS NOT AVAILABLE YET

Kotlin
@Composable
fun CompactButtonWithIcon() {
    CompactButton(onClick = { /* Do something */ }, enabled = true) {
        Icon(
            painter = painterResource(id = R.drawable.ic_airplanemode_active_24px),
            contentDescription = "airplane",
            modifier =
                Modifier.size(ButtonDefaults.SmallIconSize)
                    .wrapContentSize(align = Alignment.Center),
        )
    }
}