import clsx from 'clsx'
import {Col} from 'web/components/layout/col'
import {Avatar, AvatarSizeType} from 'web/components/widgets/avatar'
import {Row} from './layout/row'
export const MultipleOrSingleAvatars = (props: {
avatars: Array<{
avatarUrl: string
id: string
name: string
username: string
}>
onClick?: () => void
size: AvatarSizeType
// TODO: standardize these numbers so they are calculated from the size
spacing?: number
startLeft?: number
className?: string
}) => {
const {avatars, className, onClick, size} = props
if (avatars.length === 0) return null
if (avatars.length === 1) {
return