import React from 'react'; import { Modal, Text, Button, Group, Stack } from '@mantine/core'; interface DeleteUserModalProps { opened: boolean; onClose: () => void; onConfirm: () => Promise; workspaceName: string | undefined; } const DeleteWorkspaceModal: React.FC = ({ opened, onClose, onConfirm, workspaceName, }) => ( Are you sure you want to delete workspace "{workspaceName}"? This action cannot be undone and all files in this workspace will be permanently deleted. ); export default DeleteWorkspaceModal;