"use client"; import React from "react"; import { HyperViewLogo } from "./icons"; import { Panel } from "./Panel"; import { cn } from "@/lib/utils"; import { X } from "lucide-react"; interface PlaceholderPanelProps { className?: string; onClose?: () => void; } /** * Empty placeholder panel with centered HyperView logo and a close button. * Used for right and bottom zones that are reserved for future features. * The close button is always visible in the top-right corner of the panel content. */ export function PlaceholderPanel({ className, onClose }: PlaceholderPanelProps) { return ( {/* Close button always visible in top right */} {onClose && ( )}
); }