UNPKG

457 BJavaScriptView Raw
1import { r as registerInstance, h, e as Host } from './index-d4feb066.js';
2
3const footerCss = ".footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}";
4
5const Footer = class {
6 constructor(hostRef) {
7 registerInstance(this, hostRef);
8 }
9 render() {
10 return (h(Host, null, h("footer", { class: {
11 footer: true,
12 } }, h("slot", null))));
13 }
14};
15Footer.style = footerCss;
16
17export { Footer as bm_footer };