// SPDX-FileCopyrightText: 2024 John Livingston
//
// SPDX-License-Identifier: AGPL-3.0-only
/* eslint-disable max-len */
import { html } from 'lit'
import tplIcons from '../../../src/shared/components/templates/icons.js'
export default () => {
// Here we are adding some additonal icons to ConverseJS defaults
const converseJsIcons = tplIcons()
return html`
${converseJsIcons}
`
}