'use client' export interface LabelHeaderProps { label: { id: string name: string logoUrl?: string description?: string website?: string } isOwner?: boolean onEdit?: () => void } export function LabelHeader({ label, isOwner = false, onEdit }: LabelHeaderProps) { return (
{/* Banner */}
{/* Content */}
{/* Logo */}
{label.logoUrl ? ( {label.name} ) : (
)}
{/* Info */}

{label.name}

{/* Description */} {label.description && (

{label.description}

)} {/* Website Link */} {label.website && ( Visit Website )} {/* Edit Button */} {isOwner && onEdit && ( )}
) }