bulmil
Version:

18 lines (17 loc) • 577 B
JavaScript
import { r as registerInstance, h, H as Host } from './index-3da235db.js';
var Column = /** @class */ (function () {
function Column(hostRef) {
registerInstance(this, hostRef);
}
Column.prototype.render = function () {
var _a;
return (h(Host, { class: (_a = {
column: true,
'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean'
},
_a[this.sizes] = Boolean(this.sizes),
_a) }));
};
return Column;
}());
export { Column as bm_column };