"use client"; import { X } from "lucide-react"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; interface PanelHeaderProps { title: string; description?: string; onClose: () => void; className?: string; } export function PanelHeader({ title, description, onClose, className, }: PanelHeaderProps) { return (

{title}

{description ? (

{description}

) : null}
); }