UNPKG

447 BJavaScriptView Raw
1import { r as registerInstance, h, e as Host } from './index-d4feb066.js';
2
3const Column = class {
4 constructor(hostRef) {
5 registerInstance(this, hostRef);
6 }
7 render() {
8 return (h(Host, { class: {
9 column: true,
10 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
11 [this.sizes]: Boolean(this.sizes),
12 } }));
13 }
14};
15
16export { Column as bm_column };