bulmil
Version:

16 lines (15 loc) • 452 B
JavaScript
import { r as registerInstance, h } from './index-c5baf484.js';
var CardImage = /** @class */ (function () {
function CardImage(hostRef) {
registerInstance(this, hostRef);
/**
* CSS Classes
*/
this.class = '';
}
CardImage.prototype.render = function () {
return (h("div", { class: "card-image" }, h("slot", null)));
};
return CardImage;
}());
export { CardImage as bm_card_image };