UNPKG

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