UNPKG

495 BJavaScriptView Raw
1/*!
2 * Bulmil - MIT License
3 */
4'use strict';
5
6Object.defineProperty(exports, '__esModule', { value: true });
7
8const index = require('./index-481858d9.js');
9
10let Column = class {
11 constructor(hostRef) {
12 index.registerInstance(this, hostRef);
13 }
14 render() {
15 return (index.h(index.Host, { class: {
16 column: true,
17 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean',
18 [this.sizes]: Boolean(this.sizes),
19 } }));
20 }
21};
22
23exports.bm_column = Column;