1 | ;
|
2 |
|
3 | Object.defineProperty(exports, '__esModule', { value: true });
|
4 |
|
5 | const index = require('./index-13dd6f26.js');
|
6 |
|
7 | const Column = class {
|
8 | constructor(hostRef) {
|
9 | index.registerInstance(this, hostRef);
|
10 | }
|
11 | render() {
|
12 | return (index.h(index.Host, { class: {
|
13 | column: true,
|
14 | 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
|
15 | [this.sizes]: Boolean(this.sizes),
|
16 | } }));
|
17 | }
|
18 | };
|
19 |
|
20 | exports.bm_column = Column;
|