diff --git a/types/react-native-check-box/index.d.ts b/types/react-native-check-box/index.d.ts index 62efe2a79b..d311bb3919 100644 --- a/types/react-native-check-box/index.d.ts +++ b/types/react-native-check-box/index.d.ts @@ -15,7 +15,7 @@ export interface CheckBoxProps { rightTextStyle?: StyleProp; rightTextView?: React.ReactNode; checkedImage?: React.ReactElement; - uncheckedImage?: React.ReactElement; + unCheckedImage?: React.ReactElement; isChecked: boolean; onClick: () => void; disabled?: boolean; diff --git a/types/react-native-check-box/react-native-check-box-tests.tsx b/types/react-native-check-box/react-native-check-box-tests.tsx index 68035b4ed8..1a828395d2 100644 --- a/types/react-native-check-box/react-native-check-box-tests.tsx +++ b/types/react-native-check-box/react-native-check-box-tests.tsx @@ -15,6 +15,7 @@ export default class MyCheckBox extends React.Component { leftTextStyle={{ color: 'red', fontSize: 10 }} leftText={'Check me!'} checkedImage={} + unCheckedImage={} rightTextView={} /> );