"use client" import { Users } from "lucide-react" import { cn } from "@/lib/utils" import { CONTACTS_PANEL_MUTED_ICON_CLASS, CONTACTS_PANEL_TITLE_CLASS, } from "@/lib/contacts-chrome-classes" type ContactsPanelLogoProps = { onClick: () => void className?: string /** Titre plus compact (barre détail / formulaire). */ compact?: boolean } export function ContactsPanelLogo({ onClick, className, compact = false, }: ContactsPanelLogoProps) { return ( ) }