import React, { useEffect } from 'react'; import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; /** * Right-side slide-over (same pattern as Leads detail). Use on Leads, Contacts, and Deals. */ export default function SlideOverPanel({ open, onClose, title, subtitle, headerActions = null, children, widthClassName = 'max-w-lg', }) { useEffect(() => { if (!open) return; const onKey = (e) => { if (e.key === 'Escape') onClose(); }; window.addEventListener('keydown', onKey); return () => window.removeEventListener('keydown', onKey); }, [open, onClose]); if (!open) return null; return (
{children} ); }