UNPKG

bulmil

Version:

![bulmil](https://user-images.githubusercontent.com/2362138/65766959-c721a080-e16f-11e9-9fb9-45a5a2ad0391.jpg)

26 lines (21 loc) 634 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-c5d25585.js'); const Column = class { constructor(hostRef) { index.registerInstance(this, hostRef); /** * CSS Classes */ this.class = ''; } render() { return (index.h(index.Host, { class: { column: true, 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean', [this.sizes]: Boolean(this.sizes), [this.class]: Boolean(this.class), } })); } }; exports.bm_column = Column;