import 'shared/chat/unfurl.js'; import { __ } from 'i18n'; import { html } from "lit"; import { renderAvatar } from 'shared/directives/avatar'; import { shouldRenderMediaFromURL } from '@converse/headless/utils/url.js'; export default (el, o) => { const i18n_new_messages = __('New messages'); return html` ${ o.is_first_unread ? html`
` : '' } `; }