From f0f89272a0992bdd1bba32e3458c864f665d5f58 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Fri, 22 Mar 2024 15:56:45 +0100 Subject: [PATCH] fix(Button): invalid icon size for `lg` --- src/theme/button.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/button.ts b/src/theme/button.ts index 54c81fd9..76186f00 100644 --- a/src/theme/button.ts +++ b/src/theme/button.ts @@ -42,8 +42,8 @@ export default (config: { colors: string[] }) => ({ }, lg: { base: 'px-3.5 py-2.5 text-sm gap-x-2.5', - leadingIcon: 'size-6', - trailingIcon: 'size-6' + leadingIcon: 'size-5', + trailingIcon: 'size-5' }, xl: { base: 'px-3.5 py-2.5 text-base gap-x-2.5',