import React from 'react'; import { TouchableOpacity, View, Text } from 'react-native'; import { CheckBoxProps } from './checkBox.props'; import { styles } from './checkBox.styles'; export function CheckBox({ value, onValueChange, label, containerStyle, labelStyle, }: CheckBoxProps) { const handlePress = () => { onValueChange(!value); }; return ( {value && } {label && {label}} ); }