import type { ComponentPropsWithoutRef, FC } from 'react'; import { EmojiHTML } from '../emoji/html'; import type { DisplayNameProps } from './index'; export const DisplayNameSimple: FC< Omit & ComponentPropsWithoutRef<'span'> > = ({ account, localDomain: _, ...props }) => { if (!account) { return null; } return ( ); };