UNPKG

bulmil

Version:

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

35 lines (34 loc) 885 B
import { Component, Prop, h } from '@stencil/core'; export class CardContent { constructor() { /** * CSS Classes */ this.class = ''; } render() { return (h("div", { class: "card-content" }, h("slot", null))); } static get is() { return "bm-card-content"; } static get properties() { return { "class": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "CSS Classes" }, "attribute": "class", "reflect": false, "defaultValue": "''" } }; } }