UNPKG

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