chore: lint

This commit is contained in:
amhsirak
2025-01-09 19:18:55 +05:30
parent 5f4073a4e3
commit adb9c46a01

View File

@@ -8,8 +8,8 @@ interface ToggleButtonProps {
export const ToggleButton: FC<ToggleButtonProps> = ({ isChecked = false, onChange }) => (
<CheckBoxWrapper>
<CheckBox id="checkbox" type="checkbox" onClick={onChange} checked={isChecked}/>
<CheckBoxLabel htmlFor="checkbox"/>
<CheckBox id="checkbox" type="checkbox" onClick={onChange} checked={isChecked} />
<CheckBoxLabel htmlFor="checkbox" />
</CheckBoxWrapper>
);