fix: checkbox ui component (#4675)

This commit is contained in:
Anmol Singh Bhatia 2024-05-31 20:21:00 +05:30 committed by GitHub
parent e7d6e7d575
commit 1c901446ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>((props, ref)
} = props;
return (
<div className={cn("relative w-full flex gap-2", containerClassName)}>
<div className={cn("relative flex-shrink-0 flex gap-2", containerClassName)}>
<input
id={id}
ref={ref}