UNPKG

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