import { TouchableOpacity, View } from "react-native"; import { styles } from "@/styles/components/checkbox"; import { MaterialIcons } from "@expo/vector-icons"; interface Props { value: boolean; disabled?: boolean; onValueChange: () => void; } export default function CheckBox({ value, onValueChange, disabled = true, }: Props) { return ( {value && } ); }