UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

19 lines (15 loc) 465 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function Footer(...children) { const block = document.createElement("footer"); block.style.display = "flex"; block.style.justifyContent = "flex-end"; block.style.alignItems = "center"; block.style.gap = "0.5em"; children.forEach(node => { block.appendChild(node); }); return block; } exports.default = Footer; //# sourceMappingURL=Footer.js.map