UNPKG

solid-ui

Version:

UI library for writing Solid read-write-web applications

11 lines (9 loc) 396 B
"use strict"; module.exports.errorMessageBlock = errorMessageBlock; function errorMessageBlock(dom, msg, backgroundColor) { var div = dom.createElement('div'); div.setAttribute('style', 'margin: 0.1em; padding: 0.5em; border: 0.05em solid gray; background-color: ' + (backgroundColor || '#fee') + '; color:black;'); div.textContent = msg; return div; } //# sourceMappingURL=error.js.map