"use client"; import * as Dialog from '@radix-ui/react-dialog'; import { AlertTriangle } from 'lucide-react'; interface AutoLayoutModalProps { isOpen: boolean; onClose: () => void; onConfirm: () => void; } const AutoLayoutModal = ({ isOpen, onClose, onConfirm }: AutoLayoutModalProps) => { const handleConfirm = () => { onConfirm(); onClose(); }; return (
Reorder Diagram This action will rearrange all tables in the diagram. Do you want to continue?
); }; export default AutoLayoutModal;