import React from 'react';
import classNames from 'classnames';
import { useConversationUsername, useIsMe } from '../../hooks/useParamSelector';
import { Avatar, AvatarSize } from '../avatar/Avatar';
import { Emojify } from '../conversation/Emojify';
type Props = {
pubkey: string;
onClick?: () => void;
};
const AvatarItem = (props: { pubkey: string }) => {
const { pubkey } = props;
return