import { TouchableOpacity, View } from "react-native"; import { Text } from "react-native-paper"; interface CustomCheckboxProps { checked: boolean; onPress: () => void; size?: number; } export const CustomCheckbox = ({ checked, onPress, size = 20, }: CustomCheckboxProps) => { return ( {checked && ( )} ); };