UNPKG

577 BJavaScriptView Raw
1import { r as registerInstance, h, H as Host } from './index-3da235db.js';
2var Column = /** @class */ (function () {
3 function Column(hostRef) {
4 registerInstance(this, hostRef);
5 }
6 Column.prototype.render = function () {
7 var _a;
8 return (h(Host, { class: (_a = {
9 column: true,
10 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean'
11 },
12 _a[this.sizes] = Boolean(this.sizes),
13 _a) }));
14 };
15 return Column;
16}());
17export { Column as bm_column };