@bulmil/core
Version:

23 lines (22 loc) • 543 B
JavaScript
/*!
* Bulmil - MIT License
*/
import { h } from "@stencil/core";
export class Card {
render() {
return (h("div", { key: '0307cdb409577811cad45e1ef525b1a4b0750dfe', class: {
card: true,
} }, h("slot", { key: '83862a81b6acb5042b30c6d097c094dd9cd0b92d' })));
}
static get is() { return "bm-card"; }
static get originalStyleUrls() {
return {
"$": ["card.scss"]
};
}
static get styleUrls() {
return {
"$": ["card.css"]
};
}
}