bulmil
Version:

17 lines (14 loc) • 447 B
JavaScript
import { r as registerInstance, h, e as Host } from './index-75c52ae9.js';
const Column = class {
constructor(hostRef) {
registerInstance(this, hostRef);
}
render() {
return (h(Host, { class: {
column: true,
'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
[this.sizes]: Boolean(this.sizes),
} }));
}
};
export { Column as bm_column };