UNPKG

431 BJavaScriptView Raw
1/*!
2 * Bulmil - MIT License
3 */
4import { r as registerInstance, h, H as Host } from './index-8f15c9d4.js';
5
6let Column = class {
7 constructor(hostRef) {
8 registerInstance(this, hostRef);
9 }
10 render() {
11 return (h(Host, { class: {
12 column: true,
13 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
14 [this.sizes]: Boolean(this.sizes),
15 } }));
16 }
17};
18
19export { Column as bm_column };