UNPKG

370 BJavaScriptView Raw
1import { r as registerInstance, h } from './index-d9cbe763.js';
2
3const CardImage = class {
4 constructor(hostRef) {
5 registerInstance(this, hostRef);
6 /**
7 * CSS Classes
8 */
9 this.class = '';
10 }
11 render() {
12 return (h("div", { class: "card-image" }, h("slot", null)));
13 }
14};
15
16export { CardImage as bm_card_image };