commonMain.com.huanshankeji.compose.material.ext.IconButton.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-multiplatform-material-jvm Show documentation
Show all versions of compose-multiplatform-material-jvm Show documentation
Material Design component wrappers for Compose Multiplatform (desktop/Android and web)
The newest version!
package com.huanshankeji.compose.material.ext
import androidx.compose.runtime.Composable
import com.huanshankeji.compose.material.Icon
import com.huanshankeji.compose.material.icons.Icon
import com.huanshankeji.compose.ui.Modifier
@Composable
fun IconButton(
onClick: () -> Unit,
modifier: Modifier = Modifier,
icon: Icon,
contentDescription: String?
) =
com.huanshankeji.compose.material.IconButton(onClick, modifier) { Icon(icon, contentDescription) }