From 8445c1fec5787e9cb538e45432c33b972e627d24 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 27 May 2026 11:12:12 -0500 Subject: [PATCH] Revert unneeded changes to Button --- src/components/Button.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 68b5677aba..aa705b1897 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -874,10 +874,10 @@ export function ButtonIcon({ left: '50%', transform: [ { - translateX: Math.ceil((iconSize / 2) * -1), + translateX: (iconSize / 2) * -1, }, { - translateY: Math.ceil((iconSize / 2) * -1), + translateY: (iconSize / 2) * -1, }, ], },