Skip to content
Snippets Groups Projects
hy-baseline.entry.js 417 B
import { r as registerInstance, h } from './core-8406794d.js';

const Baseline = class {
    constructor(hostRef) {
        registerInstance(this, hostRef);
    }
    render() {
        return (h("div", { class: "hy-baseline" }, h("slot", null)));
    }
    static get style() { return "div.hy-baseline{display:block;margin-bottom:1rem}div.hy-baseline>*+*{margin-top:1rem}"; }
};

export { Baseline as hy_baseline };