Modal confirmation prompt for destructive or irreversible actions.
import { ConfirmDialog, Button } from '@oddapp/ui' <ConfirmDialog title="Delete project?" description="This cannot be undone." confirmLabel="Delete" cancelLabel="Cancel" onConfirm={() => deleteProject()} trigger={<Button variant="destructive">Delete</Button>} />