UNPKG

@ayonli/jsext

Version:

A JavaScript extension package for building strong and modern applications.

15 lines (13 loc) 390 B
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; } export { Footer as default }; //# sourceMappingURL=Footer.js.map