bulmil
Version:

27 lines (26 loc) • 878 B
JavaScript
System.register(['./index-1a441b18.system.js'], function (exports) {
'use strict';
var registerInstance, h;
return {
setters: [function (module) {
registerInstance = module.r;
h = module.h;
}],
execute: function () {
var CardContent = /** @class */ (function () {
function CardContent(hostRef) {
registerInstance(this, hostRef);
/**
* CSS Classes
*/
this.class = '';
}
CardContent.prototype.render = function () {
return (h("div", { class: "card-content" }, h("slot", null)));
};
return CardContent;
}());
exports('bm_card_content', CardContent);
}
};
});