From adf2703a3d24f9240fd90846acd8eb9acccd6147 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Fri, 28 Mar 2025 11:18:00 +0100 Subject: [PATCH] Refactor Button component to remove unnecessary local variables for variant and size, directly using props instead. --- code/core/src/components/components/Button/Button.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/core/src/components/components/Button/Button.tsx b/code/core/src/components/components/Button/Button.tsx index 6aecce3905d..30e8c0186b0 100644 --- a/code/core/src/components/components/Button/Button.tsx +++ b/code/core/src/components/components/Button/Button.tsx @@ -36,8 +36,6 @@ export const Button = forwardRef( if (asChild) { Comp = Slot; } - const localVariant = variant; - const localSize = size; const [isAnimating, setIsAnimating] = useState(false); @@ -65,8 +63,8 @@ export const Button = forwardRef(