import { __ } from 'i18n'; import { html } from 'lit'; import { until } from 'lit/directives/until.js'; function tpl_send_button () { const i18n_send_message = __('Send the message'); return html`` } export default (el) => { return html` ${until(el.getButtons(), '')} ${ el.show_send_button ? tpl_send_button() : '' } `; }