import React from "react"; import { Dialog, Button, Text, View } from "react-native-ui-lib"; import { StyleSheet } from "react-native"; interface DeleteEventDialogProps { visible: boolean; title: string; onDismiss: () => void; onConfirm: () => void; } const DeleteEventDialog: React.FC = ({ visible, title, onDismiss, onConfirm, }) => { return ( Delete Event Are you sure you want to delete the event:{" "} {title} {" "} ); }; // Empty stylesheet for future styles const styles = StyleSheet.create({ confirmBtn: { backgroundColor: "#ea156d", }, cancelBtn: { backgroundColor: "white", }, dialog: { backgroundColor: "white", paddingHorizontal: 25, paddingTop: 35, paddingBottom: 17, borderRadius: 20, }, title: { fontFamily: "Manrope_600SemiBold", fontSize: 22, marginBottom: 20, }, text: { fontFamily: "PlusJakartaSans_400Regular", fontSize: 16, marginBottom: 25, }, }); export default DeleteEventDialog;