feat: improve playground control style
This commit is contained in:
parent
ae4453dd21
commit
ca9036c1ad
@ -63,7 +63,9 @@ export function PlaygroundControl<T extends ControlTemplate>(props: {
|
||||
key={componentName}
|
||||
className="w-full flex flex-col justify-center items-start gap-4"
|
||||
>
|
||||
<b><{componentName.slice(0, componentName.length - 5)}></b>
|
||||
<span className="font-thin opacity-50 w-full border-b border-b-current pb-2">
|
||||
<{componentName.slice(0, componentName.length - 5)}>
|
||||
</span>
|
||||
{Object.entries(propEntries).map(([propName, propMeta]) => (
|
||||
<div
|
||||
key={componentName + propName}
|
||||
@ -75,9 +77,9 @@ export function PlaygroundControl<T extends ControlTemplate>(props: {
|
||||
>
|
||||
<Checkbox
|
||||
onChange={(e) => {
|
||||
propMeta.onToggle(e.currentTarget.checked);
|
||||
propMeta.onToggle(!e.currentTarget.checked);
|
||||
}}
|
||||
checked={propMeta.disabled}
|
||||
checked={!propMeta.disabled}
|
||||
/>
|
||||
{propMeta.disabled ? (
|
||||
<s className="opacity-50">{propName}</s>
|
||||
|
Loading…
x
Reference in New Issue
Block a user