We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 480a414 commit 460179fCopy full SHA for 460179f
src/app/components/button/default/CheckBtn.tsx
@@ -30,7 +30,6 @@ const CheckBtn: React.FC<CheckBtnProps> = ({
30
<label htmlFor={value} className={cn("text-sm", disabled ? "text-gray-400" : "text-black")}>
31
{label}
32
</label>
33
- <div className={`${baseStyles} ${cursorStyle}`}>
34
<input
35
type="checkbox"
36
id={value}
@@ -39,12 +38,9 @@ const CheckBtn: React.FC<CheckBtnProps> = ({
39
38
checked={checked}
40
onChange={onChange}
41
disabled={disabled}
42
- className="mr-2"
+ className="ml-2"
43
{...props}
44
/>
45
- <label htmlFor={value} className={`text-sm ${textColor}`}>
46
- {label}
47
- </label>
48
</div>
49
);
50
};
0 commit comments