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 637df0a228
commit 805eaf631d

View File

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