bulmil
Version:

26 lines (21 loc) • 625 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-35884e75.js');
class Column {
constructor(hostRef) {
index.registerInstance(this, hostRef);
/**
* CSS Classes
*/
this.class = '';
}
render() {
return (index.h(index.Host, { class: {
column: true,
'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
[this.sizes]: Boolean(this.sizes),
[this.class]: Boolean(this.class),
} }));
}
}
exports.bm_column = Column;
;