type DefaultLabelerAvatarProps = Readonly<{ size?: number; backgroundColor?: string; foregroundColor?: string; class?: string; }>; export function DefaultLabelerAvatar({ size = 28, backgroundColor = "rgb(139 92 246)", // Tailwind purple-500 foregroundColor = "#fff", class: classProp, }: DefaultLabelerAvatarProps) { return ( ); }