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}