UNPKG

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