import { X } from 'lucide-react'; interface LayoutSwitchConfirmationProps { onKeep: () => void; onReplace: () => void; onCancel: () => void; } export default function LayoutSwitchConfirmation({ onKeep, onReplace, onCancel }: LayoutSwitchConfirmationProps) { return (
{/* Modal Container */}
e.stopPropagation()} > {/* Header */}

Switch Layout

{/* Content */}

You have custom objects on the canvas. What would you like to do?

{/* Options */}
{/* Keep Option */}

Keep my objects

Add the new layout objects alongside your existing work

{/* Replace Option */}

Replace everything

Remove all objects and load a fresh layout

{/* Actions */}
); }