UNPKG

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