Skip to content

Commit 11b74d0

Browse files
author
Said Shah
committed
Updated variable name
1 parent d7d6081 commit 11b74d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/atoms/forms/checkbox-input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ const CheckboxInput: React.FC<CheckboxInputProperties> = (
3333
const { checked, disabled, label, onChange } = props;
3434

3535
let className = ELEMENT_CLASS;
36-
let isDisabled = disabled ? CheckboxDisabledClass : "";
36+
let isDisabledClassName = disabled ? CheckboxDisabledClass : "";
3737

3838
return (
39-
<label className={`${className} ${isDisabled}`}>
39+
<label className={`${className} ${isDisabledClassName}`}>
4040
{label}
4141
<input
4242
checked={checked}

0 commit comments

Comments
 (0)