diff --git a/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/utils/Extension.kt b/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/utils/Extension.kt index fd386f0..cefa0c9 100644 --- a/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/utils/Extension.kt +++ b/flexiui-core/src/commonMain/kotlin/com/highcapable/flexiui/utils/Extension.kt @@ -27,8 +27,8 @@ import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.TextUnit import androidx.compose.ui.unit.isSpecified -internal inline fun Dp.orElse() = if (isSpecified) this else null +internal fun Dp.orElse() = if (isSpecified) this else null -internal inline fun Color.orElse() = if (isSpecified) this else null +internal fun Color.orElse() = if (isSpecified) this else null -internal inline fun TextUnit.orElse() = if (isSpecified) this else null \ No newline at end of file +internal fun TextUnit.orElse() = if (isSpecified) this else null \ No newline at end of file