"use client"; import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; import { X } from "lucide-react"; interface SheetHeaderProps { title: string; onClose: () => void; } export function SheetHeader({ title, onClose }: SheetHeaderProps) { return (