UNPKG

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