Skip to content

Commit

Permalink
fix(checkbox): fix the ceckbox event type
Browse files Browse the repository at this point in the history
  • Loading branch information
RobVermeer committed Sep 4, 2023
1 parent f2b86e7 commit 4e28f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Checkbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export interface CheckboxProps {
id: string
className?: string
defaultOn?: boolean
onChange?: (event: React.ChangeEvent<HTMLElement>) => void
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void
label: string | ReactNode
hideLabel?: boolean
help?: string
Expand Down

0 comments on commit 4e28f63

Please sign in to comment.