This commit is contained in:
Hachi-R
2025-01-16 11:30:24 -03:00
parent ee4c564698
commit f6707a5c84
2 changed files with 5 additions and 2 deletions

View File

@@ -15,7 +15,9 @@ export function CheckboxField({ label, ...props }: CheckboxFieldProps) {
return (
<div className="checkbox-field">
<div className={`checkbox-field__checkbox ${props.checked ? 'checked' : ''}`}>
<div
className={`checkbox-field__checkbox ${props.checked ? "checked" : ""}`}
>
<input
id={id}
type="checkbox"