import React from 'react'; import {View, StyleSheet, Text} from 'react-native'; import CheckBox from '@react-native-community/checkbox'; import {PRIMARY} from '../color'; export default function Checkbox({value, onValueChange, text}) { return ( {text} ); } const styles = StyleSheet.create({ checkboxContainer: { flexDirection: 'row', marginBottom: 10, alignItems: 'center', width: '100%', }, checkText: { fontSize: 13, color: '#333333', }, });