import { cn } from '@/lib/utils' import { UserRound } from 'lucide-react' export function AnonUserAvatar({ size = 'small', className }: { size?: 'small' | 'medium' className?: string }) { const dim = size === 'small' ? 'size-8' : 'size-10' const icon = size === 'small' ? 'size-4' : 'size-5' return (
) }