type DefaultAvatarProps = Readonly<{ size?: number; backgroundColor?: string; foregroundColor?: string; className?: string; }>; export function DefaultAvatar({ size = 28, backgroundColor = "#00a6f4", // Tailwind sky 500 foregroundColor = "#fff", className, }: DefaultAvatarProps) { return ( ); }