import { Image } from '@shared/image'; 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)}
); }