From 7e02fff717055ee86e7e236bdd9cc9248f26e80e Mon Sep 17 00:00:00 2001 From: syc0123 Date: Mon, 16 Mar 2026 11:28:03 +0900 Subject: [PATCH] fix: update default button size in V2ButtonPrimary component - Changed the default width of the V2ButtonPrimary component from 140 to 100 pixels to improve UI consistency and responsiveness. - This adjustment aligns the button size with design specifications for better user experience. --- frontend/lib/registry/components/v2-button-primary/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lib/registry/components/v2-button-primary/index.ts b/frontend/lib/registry/components/v2-button-primary/index.ts index 2e4c53eb..2aa4844c 100644 --- a/frontend/lib/registry/components/v2-button-primary/index.ts +++ b/frontend/lib/registry/components/v2-button-primary/index.ts @@ -43,7 +43,7 @@ export const V2ButtonPrimaryDefinition = createComponentDefinition({ backgroundColor: "#3B83F6", }, }, - defaultSize: { width: 140, height: 40 }, + defaultSize: { width: 100, height: 40 }, configPanel: V2ButtonConfigPanel, icon: "MousePointer", tags: ["버튼", "액션", "클릭"],