Fix close button tint in extension screen (#7154)

pull/7168/head
CVIUS 2 years ago committed by GitHub
parent 01e04e31bf
commit f2a478288a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -351,7 +351,11 @@ fun ExtensionItemActions(
}
if (isIdle.not()) {
IconButton(onClick = { onClickItemCancel(extension) }) {
Icon(Icons.Default.Close, "")
Icon(
imageVector = Icons.Default.Close,
contentDescription = "",
tint = MaterialTheme.colorScheme.onBackground,
)
}
}
}

Loading…
Cancel
Save