From ad7b907e572556e277c4ca19a77ee3dfc81afb02 Mon Sep 17 00:00:00 2001 From: Hyko Date: Wed, 22 Apr 2026 19:42:39 -0400 Subject: [PATCH] refactor(ui): apply size class directly to icon component instead of wrapper span --- src/shared/components/Button.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/components/Button.js b/src/shared/components/Button.js index a3a7ed5..30ed921 100644 --- a/src/shared/components/Button.js +++ b/src/shared/components/Button.js @@ -71,11 +71,11 @@ const Button = ({ ) : ( <> {Icon && iconPosition === 'left' && ( - + )} {children} {Icon && iconPosition === 'right' && ( - + )} )}