UNPKG

@claromentis/design-system

Version:

Claromentis Design System Component Library

22 lines (21 loc) 479 B
import { h } from '@stencil/core'; /** * @slot - Card footer content goes in here. */ export class Cardheader { render() { return (h("div", { class: "card-footer" }, h("slot", null))); } static get is() { return "cla-card-footer"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["cla-card-footer.scss"] }; } static get styleUrls() { return { "$": ["cla-card-footer.css"] }; } }