import { html } from "lit"; import { __ } from 'i18n'; export default (el) => { const label_away = __('Away'); const label_busy = __('Busy'); const label_online = __('Online'); const label_save = __('Save'); const label_xa = __('Away for long'); const placeholder_status_message = __('Personal status message'); const status = el.model.get('status'); const status_message = el.model.get('status_message'); return html`
el.onFormSubmitted(ev)}>
el.clearStatusMessage(ev)}>
`; }