Merge pull request 'fix(#39): shrink empty-state illustration from 120dp to 96dp' (#45) from feat/39-empty-state-illustration-too-large into main

Reviewed-on: #45
This commit was merged in pull request #45.
This commit is contained in:
2026-06-28 14:53:11 +00:00
@@ -35,7 +35,7 @@ fun EmptyStateIllustration(
Image(
painter = rememberVectorPainter(image = Icons.AutoMirrored.Outlined.ReceiptLong),
contentDescription = null,
modifier = Modifier.size(120.dp),
modifier = Modifier.size(96.dp),
colorFilter = ColorFilter.tint(MaterialTheme.colorScheme.onSurfaceVariant),
)
Spacer(Modifier.height(16.dp))