about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-10-10 18:50:19 -0500
committerGitHub <noreply@github.com>2024-10-10 16:50:19 -0700
commit2fc1f9ca654990c16d901da0fdb4bf8ecc36b454 (patch)
tree9f96c36ea94487616130421b36047aa978cbf889
parente1a696bcbbb6f8c2c95ed742a6455d5bf3e4fa69 (diff)
downloadvoidsky-2fc1f9ca654990c16d901da0fdb4bf8ecc36b454.tar.zst
Bump icon size for small size buttons (#5687)
-rw-r--r--src/components/Button.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index 4acb4f1dc..aaac73bd3 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -670,7 +670,7 @@ export function ButtonIcon({
       size ??
       (({
         large: 'sm',
-        small: 'xs',
+        small: 'sm',
         tiny: 'xs',
       }[buttonSize || 'small'] || 'sm') as Exclude<
         SVGIconProps['size'],