UNPKG

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