import React from 'react'; import { Dialog, DialogTitle, DialogContent, DialogContentText, DialogActions, Button, Box, Typography, useTheme, Divider } from '@mui/material'; import EditIcon from '@mui/icons-material/Edit'; const ConfirmationDialog = ({ open, onClose, onConfirm }) => { const theme = useTheme(); return ( {/* الدوائر */} {/* الدائرة الخلفية */} {/* الدائرة الأمامية مع الأيقونة */} Success icon {/* العنوان بجانب الدائرة */} Register successful! Congratulations! you have registered your restaurant successfully on our platform {/* الزر الأول - Filled */} {/* الزر الثاني - Outlined + أيقونة Edit */} ); }; export default ConfirmationDialog;