mami/src/mami.js/ui/chat-input-main.js
2024-02-09 00:56:27 +00:00

34 lines
786 B
JavaScript

#include utility.js
Umi.UI.ChatInputMain = function() {
const html = $e({
attrs: {
id: 'umi-msg-container',
className: 'input__main',
},
child: [
{
tag: 'textarea',
attrs: {
id: 'umi-msg-text',
name: 'text',
className: 'input__text',
autofocus: true,
},
},
{
tag: 'button',
attrs: {
id: 'umi-msg-send',
className: 'input__button input__button--send',
},
},
],
});
return {
getElement: function() {
return html;
},
};
};