Fix about icons sizing

This commit is contained in:
arkon 2022-04-28 09:15:54 -04:00
parent 7abb407897
commit 8798c295e6

View File

@ -28,9 +28,11 @@ fun LinkIcon(
painter: Painter,
onClick: () -> Unit,
) {
IconButton(onClick = onClick) {
IconButton(
modifier = modifier.padding(4.dp),
onClick = onClick,
) {
Icon(
modifier = modifier.padding(16.dp),
painter = painter,
tint = MaterialTheme.colorScheme.primary,
contentDescription = label,