fix: remove unnecessary layer in checkbox
This commit is contained in:
parent
b2d417c49c
commit
01817388c2
@ -6,13 +6,13 @@ const checkboxColors = {
|
||||
default: "bg-neutral-200 dark:bg-neutral-700",
|
||||
checked: "bg-neutral-300 dark:bg-neutral-400",
|
||||
disabled:
|
||||
"peer-disabled/checkbox:bg-neutral-100 dark:peer-disabled/checkbox:bg-neutral-800",
|
||||
'has-[input[type="checkbox"]:disabled]:bg-neutral-100 dark:has-[input[type="checkbox"]:disabled]:bg-neutral-800',
|
||||
},
|
||||
checkmark: "text-black dark:text-white",
|
||||
};
|
||||
|
||||
const [checkboxVariant, resolveCheckboxVariantProps] = vcn({
|
||||
base: `inline-block rounded-md p-1 size-6 ${checkboxColors.checkmark} ${checkboxColors.background.disabled} peer-disabled/checkbox:cursor-not-allowed transition-colors duration-75 ease-in-out`,
|
||||
base: `inline-block rounded-md p-1 size-6 ${checkboxColors.checkmark} ${checkboxColors.background.disabled} has-[input[type="checkbox"]:disabled]:cursor-not-allowed transition-colors duration-75 ease-in-out`,
|
||||
variants: {
|
||||
checked: {
|
||||
true: `${checkboxColors.background.checked}`,
|
||||
@ -47,7 +47,7 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
||||
|
||||
return (
|
||||
<>
|
||||
<label className="size-6">
|
||||
<label className={checkboxVariant({ ...variantProps, checked })}>
|
||||
<input
|
||||
{...otherPropsExtracted}
|
||||
defaultChecked={defaultChecked}
|
||||
@ -73,7 +73,6 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
||||
}
|
||||
}}
|
||||
/>
|
||||
<div className={checkboxVariant({ ...variantProps, checked })}>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="1em"
|
||||
@ -86,7 +85,6 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
|
||||
d="M21 7L9 19l-5.5-5.5l1.41-1.41L9 16.17L19.59 5.59z"
|
||||
></path>
|
||||
</svg>
|
||||
</div>
|
||||
</label>
|
||||
</>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user