Skip to content

Commit 460179f

Browse files
committed
Merge
1 parent 480a414 commit 460179f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/app/components/button/default/CheckBtn.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ const CheckBtn: React.FC<CheckBtnProps> = ({
3030
<label htmlFor={value} className={cn("text-sm", disabled ? "text-gray-400" : "text-black")}>
3131
{label}
3232
</label>
33-
<div className={`${baseStyles} ${cursorStyle}`}>
3433
<input
3534
type="checkbox"
3635
id={value}
@@ -39,12 +38,9 @@ const CheckBtn: React.FC<CheckBtnProps> = ({
3938
checked={checked}
4039
onChange={onChange}
4140
disabled={disabled}
42-
className="mr-2"
41+
className="ml-2"
4342
{...props}
4443
/>
45-
<label htmlFor={value} className={`text-sm ${textColor}`}>
46-
{label}
47-
</label>
4844
</div>
4945
);
5046
};

0 commit comments

Comments
 (0)