import React from 'react'; import { Box } from './primitives/Box'; import { Image } from './Image'; import { Surface } from './primitives/Surface'; interface AvatarProps { src?: string | null; alt: string; size?: number; className?: string; } export function Avatar({ src, alt, size = 40, className = '' }: AvatarProps) { return ( {src ? ( {alt} ) : ( {alt.charAt(0).toUpperCase()} )} ); }