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