UNPKG

803 BJavaScriptView Raw
1import { r as registerInstance, h, H as Host } from './core-98b1cff0.js';
2var Footer = /** @class */ (function () {
3 function Footer(hostRef) {
4 registerInstance(this, hostRef);
5 /**
6 * CSS Classes
7 */
8 this.class = '';
9 }
10 Footer.prototype.render = function () {
11 var _a;
12 return (h(Host, null, h("footer", { class: (_a = {
13 footer: true
14 },
15 _a[this.class] = Boolean(this.class),
16 _a) }, h("slot", null))));
17 };
18 Object.defineProperty(Footer, "style", {
19 get: function () { return ".footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}"; },
20 enumerable: true,
21 configurable: true
22 });
23 return Footer;
24}());
25export { Footer as bm_footer };