UNPKG

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