Skip to content
Snippets Groups Projects
hy-baseline.entry.js 448 B
Newer Older
  • Learn to ignore specific revisions
  • Markus Kaarto's avatar
    Markus Kaarto committed
    import { r as registerInstance, h } from './core-f3842c8e.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 {\n  display: block;\n  margin-bottom: 1rem;\n}\n\ndiv.hy-baseline > * + * {\n  margin-top: 1rem;\n}"; }
    };
    
    export { Baseline as hy_baseline };