We want an icon size of 20 when the avatar size is 64.

This commit is contained in:
Benoit Marty 2026-03-24 12:51:57 +01:00
parent 8c5ea9694e
commit c359da9ed7

View file

@ -195,7 +195,7 @@ private fun BoxScope.OverlayEditButton(
contentAlignment = Alignment.Center,
) {
Icon(
modifier = Modifier.size(editButtonSize * 24 / 30f),
modifier = Modifier.size(editButtonSize * 20 / 30f),
imageVector = CompoundIcons.Edit(),
contentDescription = null,
)