UNPKG

@bulmil/core

Version:

![bulmil](https://user-images.githubusercontent.com/2362138/65766959-c721a080-e16f-11e9-9fb9-45a5a2ad0391.jpg)

33 lines (29 loc) 1.03 kB
/*! * Bulmil - MIT License */ import { proxyCustomElement, HTMLElement, h } from '@stencil/core/internal/client'; const CardContent = /*@__PURE__*/ proxyCustomElement(class CardContent extends HTMLElement { constructor() { super(); this.__registerHost(); } render() { return (h("div", { key: '8deefc4a73e184ab560c6ee867569573e208bdc6', class: "card-content" }, h("slot", { key: '29257e60fb46cb2a46554fcd4d9fe5901dacd1f8' }))); } }, [4, "bm-card-content"]); function defineCustomElement$1() { if (typeof customElements === "undefined") { return; } const components = ["bm-card-content"]; components.forEach(tagName => { switch (tagName) { case "bm-card-content": if (!customElements.get(tagName)) { customElements.define(tagName, CardContent); } break; } }); } const BmCardContent = CardContent; const defineCustomElement = defineCustomElement$1; export { BmCardContent, defineCustomElement };