import { Image } from '@shared/image'; import { DEFAULT_AVATAR } from '@stores/constants'; import { displayNpub } from '@utils/shortenKey'; import { Profile } from '@utils/types'; export function MentionItem({ profile }: { profile: Profile }) { return (
{profile.pubkey}
{profile.ident || (
)}
{displayNpub(profile.pubkey, 16)}
); }