From ca9036c1ad52eb8f7ec1a335b54f70104af3a367 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 4 Aug 2024 14:35:09 +0900 Subject: [PATCH] feat: improve playground control style --- src/components/Playground.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/Playground.tsx b/src/components/Playground.tsx index 8e9b1a4..a0cd069 100644 --- a/src/components/Playground.tsx +++ b/src/components/Playground.tsx @@ -63,7 +63,9 @@ export function PlaygroundControl(props: { key={componentName} className="w-full flex flex-col justify-center items-start gap-4" > - <{componentName.slice(0, componentName.length - 5)}> + + <{componentName.slice(0, componentName.length - 5)}> + {Object.entries(propEntries).map(([propName, propMeta]) => (
(props: { > { - propMeta.onToggle(e.currentTarget.checked); + propMeta.onToggle(!e.currentTarget.checked); }} - checked={propMeta.disabled} + checked={!propMeta.disabled} /> {propMeta.disabled ? ( {propName}