import classNames from 'classnames';
import { useConversationUsername, useIsMe, useIsPrivate } 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