UNPKG

647 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', { value: true });
4
5const index = require('./index-849db034.js');
6
7const footerCss = ".footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}";
8
9class Footer {
10 constructor(hostRef) {
11 index.registerInstance(this, hostRef);
12 /**
13 * CSS Classes
14 */
15 this.class = '';
16 }
17 render() {
18 return (index.h(index.Host, null, index.h("footer", { class: {
19 footer: true,
20 [this.class]: Boolean(this.class),
21 } }, index.h("slot", null))));
22 }
23}
24Footer.style = footerCss;
25
26exports.bm_footer = Footer;