UNPKG

bulmil

Version:

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

48 lines (47 loc) 1.36 kB
import { Component, Prop, h, Host } from '@stencil/core'; export class Column { render() { return (h(Host, { class: { column: true, 'is-narrow': this.isNarrow && typeof this.isNarrow === 'boolean', [this.sizes]: Boolean(this.sizes), } })); } static get is() { return "bm-column"; } static get properties() { return { "sizes": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "Sizes" }, "attribute": "sizes", "reflect": false }, "isNarrow": { "type": "boolean", "mutable": false, "complexType": { "original": "boolean", "resolved": "boolean", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "Narrow column" }, "attribute": "is-narrow", "reflect": false } }; } }