@bulmil/core
Version:

24 lines (19 loc) • 495 B
JavaScript
/*!
* Bulmil - MIT License
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-e14b47c7.js');
let Column = class {
constructor(hostRef) {
index.registerInstance(this, hostRef);
}
render() {
return (index.h(index.Host, { class: {
column: true,
'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
[this.sizes]: Boolean(this.sizes),
} }));
}
};
exports.bm_column = Column;