xmpp.chapril.org-conversejs/src/shared/components/font-awesome.js
JC Brand 15c10376b0 Rename all templates to camelCase
To conform with naming conventions regarding functions, which the
templates are.
2023-02-15 14:29:07 +01:00

12 lines
349 B
JavaScript

import tplIcons from '../templates/icons.js';
import { CustomElement } from './element.js';
import { api } from '@converse/headless/core.js';
export class FontAwesome extends CustomElement {
render () { // eslint-disable-line class-methods-use-this
return tplIcons();
}
}
api.elements.define('converse-fontawesome', FontAwesome);