diff options
author | Eric Bailey <git@esb.lol> | 2024-10-10 18:50:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 16:50:19 -0700 |
commit | 2fc1f9ca654990c16d901da0fdb4bf8ecc36b454 (patch) | |
tree | 9f96c36ea94487616130421b36047aa978cbf889 /src | |
parent | e1a696bcbbb6f8c2c95ed742a6455d5bf3e4fa69 (diff) | |
download | voidsky-2fc1f9ca654990c16d901da0fdb4bf8ecc36b454.tar.zst |
Bump icon size for small size buttons (#5687)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/Button.tsx | 2 |
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'], |