"use client"; import SaveButton from "@/components/paste-form/SaveButton"; import { ChevronDown, ChevronRight, Eye, Lock, Plus, Settings } from "lucide-react"; interface SidebarPanelProps { title: string; setTitle: (v: string) => void; maxViews: string; setMaxViews: (v: string) => void; password: string; setPassword: (v: string) => void; content: string; isSaving: boolean; handleSave: () => void; advanced: boolean; setAdvanced: (v: boolean) => void; } export default function SidebarPanel({ title, setTitle, maxViews, setMaxViews, password, setPassword, content, isSaving, handleSave, advanced, setAdvanced, }: SidebarPanelProps) { return ( ); }