From baf63c8a829050c47c157a6878fc8394e7d22297 Mon Sep 17 00:00:00 2001 From: Stephen Zhou Date: Sat, 7 Sep 2024 17:25:18 +0800 Subject: [PATCH] fix: default font size to 16 --- components/text.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/text.tsx b/components/text.tsx index 864aaf0..fc82c0c 100644 --- a/components/text.tsx +++ b/components/text.tsx @@ -37,7 +37,7 @@ export function Text({ const styleSheet = createStyleSheet(theme => ({ text(variant?: VariantProps) { const { - size = 18, + size = 16, contrast = 'high', weight = 'regular', color = 'gray',