diff --git a/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/component/Button.kt b/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/component/Button.kt index f85e2ba..37acb36 100644 --- a/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/component/Button.kt +++ b/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/component/Button.kt @@ -240,7 +240,7 @@ private fun defaultButtonOutBoxColors() = ButtonColors( @ReadOnlyComposable private fun defaultIconButtonColors() = ButtonColors( rippleColor = LocalColors.current.themeSecondary, - contentColor = LocalColors.current.themePrimary, + contentColor = LocalIconTint.current.orElse() ?: LocalColors.current.themePrimary, backgroundColor = Color.Transparent )