bulmil
Version:

26 lines (21 loc) • 634 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-c5d25585.js');
const Column = class {
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;
;