@bulmil/core
Version:

23 lines (22 loc) • 606 B
JavaScript
/*!
* 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"]
};
}
}