import React from "react"; import { StyleSheet, Text, TouchableOpacity, View } from "react-native"; import Modal from "react-native-modal"; const DeleteConfirmationModal = ({ isVisible, onCancel, onConfirm }) => { return ( Are you sure you want to delete? it cannot be undone Cancel Confirm ); }; const styles = StyleSheet.create({ actions: { flexDirection: "row", justifyContent: "space-between", alignItems: "center", padding: 10, }, buttons: { position: "absolute", flexDirection: "row", bottom: 0, }, btnCancel: { color: "#ff0000", padding: 10, }, btnCancelText: { color: "#ff0000", padding: 10, }, btnConfirm: { color: "#ff0000", padding: 10, }, btnConfirmText: { color: "#001aff", padding: 10, }, }); export default DeleteConfirmationModal;