import React from 'react'; import { Modal, Text, Button, Group, Stack } from '@mantine/core'; import type { User } from '@/types/models'; interface DeleteUserModalProps { opened: boolean; onClose: () => void; onConfirm: () => Promise; user: User | null; loading: boolean; } const DeleteUserModal: React.FC = ({ opened, onClose, onConfirm, user, loading, }) => ( Are you sure you want to delete user "{user?.email}"? This action cannot be undone and all associated data will be permanently deleted. ); export default DeleteUserModal;