Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(FormCheckbox): add onBlur prop
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp committed May 28, 2018
1 parent 7caaf82 commit b418d1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Form/FormCheckbox.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export type Props = {|
+disabled?: boolean,
+readOnly?: boolean,
+onChange?: (event: SyntheticInputEvent<HTMLInputElement>) => void,
+onBlur?: (event: SyntheticInputEvent<HTMLInputElement>) => void,
+isInline?: boolean,
|};

Expand Down

0 comments on commit b418d1a

Please sign in to comment.