import type React from "react"; import { Button, Dialog, DialogContent } from "@repo/shadcn-ui/components"; import { cn } from "@repo/shadcn-ui/lib/utils"; import { X } from "lucide-react"; interface FullscreenModalProps { isOpen: boolean; onClose: () => void; title: string; children: React.ReactNode; className?: string; } export const FullscreenModal = ({ isOpen, onClose, title, children, className, }: FullscreenModalProps) => { return ( {/* Header fijo */}

{title}

{/* Contenido scrolleable */}
{children}
); };