diff --git a/src/framework/ui/checkbox/checkbox.component.tsx b/src/framework/ui/checkbox/checkbox.component.tsx index fd9c33925..4940e185e 100644 --- a/src/framework/ui/checkbox/checkbox.component.tsx +++ b/src/framework/ui/checkbox/checkbox.component.tsx @@ -70,7 +70,7 @@ export type CheckBoxProps = StyledComponentProps & TouchableOpacityProps & Compo * * ``` * import React from 'react'; - * import { Checkbox } from 'react-native-ui-kitten'; + * import { CheckBox } from 'react-native-ui-kitten'; * * export class CheckBoxShowcase extends React.Component { * @@ -84,7 +84,7 @@ export type CheckBoxProps = StyledComponentProps & TouchableOpacityProps & Compo * * public render(): React.ReactNode { * return ( - * @@ -101,7 +101,7 @@ export type CheckBoxProps = StyledComponentProps & TouchableOpacityProps & Compo * * export const CheckBoxShowcase = (props?: CheckBoxProps): React.ReactElement => { * return ( - *