"use client" import React from 'react'; import { cn } from "../utils/cn"; import { getProxiedImageUrl } from '../utils/image-proxy'; import { SquareAvatar } from './ui/square-avatar'; interface MSPDisplayProps { name: string; logoUrl?: string | null; size?: number; // avatar size in px (square) className?: string; } export function MSPDisplay({ name, logoUrl, size = 40, className }: MSPDisplayProps) { return (