import React from "react";
import { Modal, StyleSheet, Text, TouchableOpacity, View } from "react-native";
import colors from "../config/colors";
import { dimensions } from "../config/dimensions";
import { Ionicons } from "@expo/vector-icons";
function Btn({ label, onPress, bgColor, txtColor, style = {} }) {
return (
{label}
);
}
export default function ConfirmationModal({
show,
onConfirm,
onDecline,
confirmationLabel,
declineLabel,
title = null,
description = "",
icon = null,
}) {
return (
{title && (
{title}
)}
{icon && (
)}
{description}
{onDecline && declineLabel && (
)}
{onConfirm && confirmationLabel && (
)}
);
}
const styles = StyleSheet.create({
container: {
width: "85%",
justifyContent: "center",
alignSelf: "center",
backgroundColor: colors.lightestGray,
borderColor: colors.primary,
borderWidth: 2,
borderRadius: 12,
padding: 16,
},
text: {
fontSize: dimensions.text.default,
textAlign: "left",
fontWeight: "bold",
},
});