From ebc86473ff1b971845357f69fa00c874949b2c90 Mon Sep 17 00:00:00 2001 From: Alex Kim Date: Sun, 31 May 2026 23:39:14 +1000 Subject: [PATCH] Improve look of download button in the download sheet --- components/RoundButton.tsx | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/components/RoundButton.tsx b/components/RoundButton.tsx index 5493d94f2..dcbc0578d 100644 --- a/components/RoundButton.tsx +++ b/components/RoundButton.tsx @@ -39,19 +39,21 @@ export const RoundButton: React.FC> = ({ if (Platform.OS === "ios") { return ( - - {icon ? ( - - ) : null} - {children ? children : null} + + + {icon ? ( + + ) : null} + {children ? children : null} + ); }