UNPKG

511 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', { value: true });
4
5const index = require('./index-8e7d875f.js');
6
7const 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
20exports.bm_column = Column;