From bcac697a043b4734029880435be7f8dfca55d5f2 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 14:02:32 +0900 Subject: [PATCH] fix(playground): make every prop except preset to defaultly disabled --- src/docs/components/ButtonBlocks/Playground.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/docs/components/ButtonBlocks/Playground.tsx b/src/docs/components/ButtonBlocks/Playground.tsx index 4e05d0d..93bf0b0 100644 --- a/src/docs/components/ButtonBlocks/Playground.tsx +++ b/src/docs/components/ButtonBlocks/Playground.tsx @@ -17,17 +17,19 @@ export default function ButtonPlayground() { preset: { type: "select", options: ["default", "ghost", "link", "success", "warning", "danger"], - value: "ghost", + value: "default", }, size: { type: "select", options: ["link", "sm", "md", "lg", "icon"], value: "md", + disabled: true, }, border: { type: "select", options: ["none", "solid", "success", "warning", "danger"], value: "solid", + disabled: true, }, background: { type: "select", @@ -40,15 +42,18 @@ export default function ButtonPlayground() { "transparent", ], value: "default", + disabled: true, }, decoration: { type: "select", options: ["none", "link"], value: "none", + disabled: true, }, disabled: { type: "boolean", value: false, + disabled: true, }, }, });