Add to existing

This commit is contained in:
Eric Bailey
2024-02-09 11:56:19 -06:00
parent 648462b5bd
commit c01c130b7b
+1 -1
View File
@@ -236,7 +236,7 @@ export function lh(
height: number, height: number,
): TextStyle { ): TextStyle {
return { return {
lineHeight: (theme.typography[type].fontSize || 16) * height, lineHeight: Math.round((theme.typography[type].fontSize || 16) * height),
} }
} }