@bulmil/core
Version:

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