Skip to content

Commit

Permalink
Updating libs dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
omarsanchezv committed Feb 6, 2024
1 parent ce6ebca commit 8b4df6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,14 +299,14 @@ private fun ClearIconButton(
isNumberValid: Boolean,
onClick: () -> Unit,
) = IconButton(onClick = onClick) {
val interactionSource: MutableInteractionSource = remember { MutableInteractionSource() }

Icon(
imageVector = imageVector,
contentDescription = stringResource(id = R.string.clear),
tint = colors.trailingIconColor(
enabled = true,
isError = !isNumberValid,
interactionSource = interactionSource,
interactionSource = remember { MutableInteractionSource() },
).value,
)
}
Expand Down

0 comments on commit 8b4df6c

Please sign in to comment.