UNPKG

@bulmil/core

Version:

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

23 lines (22 loc) 606 B
/*! * Bulmil - MIT License */ import { h, Host } from "@stencil/core"; export class Box { render() { return (h(Host, { key: '15d4a74df47e2bc80124496464f05ef32a183aec' }, h("div", { key: '2ed36611ac99c561db00c8b919863b01fd76fe63', class: { box: true, } }, h("slot", { key: 'ca89f63e024a4aceecd7b804f54e036181f343c1' })))); } static get is() { return "bm-box"; } static get originalStyleUrls() { return { "$": ["box.scss"] }; } static get styleUrls() { return { "$": ["box.css"] }; } }