@bulmil/core
Version:

39 lines (34 loc) • 1.25 kB
JavaScript
/*!
* Bulmil - MIT License
*/
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
const footerCss = ".footer{background-color:hsl(0, 0%, 98%);padding:3rem 1.5rem 6rem}";
const BmFooterStyle0 = footerCss;
const Footer = /*@__PURE__*/ proxyCustomElement(class Footer extends HTMLElement {
constructor() {
super();
this.__registerHost();
}
render() {
return (h(Host, { key: 'dc4e81e4602f24b00a7227f05c37d62165d7459d' }, h("footer", { key: 'faf78cba44110822a3fbf4d7f69b434e781464bc', class: {
footer: true,
} }, h("slot", { key: '303c1276b790d5b5930345cde43a63254d63e4d7' }))));
}
static get style() { return BmFooterStyle0; }
}, [4, "bm-footer"]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["bm-footer"];
components.forEach(tagName => { switch (tagName) {
case "bm-footer":
if (!customElements.get(tagName)) {
customElements.define(tagName, Footer);
}
break;
} });
}
const BmFooter = Footer;
const defineCustomElement = defineCustomElement$1;
export { BmFooter, defineCustomElement };