@ayonli/jsext
Version:
A JavaScript extension package for building strong and modern applications.
17 lines (13 loc) • 441 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function Text(message) {
const text = document.createElement("p");
text.innerHTML = message.replace(/ /g, " ").replace(/\n/g, "<br />");
text.style.margin = "0 0 1rem";
text.style.fontSize = "1em";
text.style.width = "100%";
text.style.overflowX = "auto";
return text;
}
exports.default = Text;
//# sourceMappingURL=Text.js.map