UNPKG

@claromentis/design-system

Version:

Claromentis Design System Component Library

22 lines (21 loc) 515 B
import { h } from '@stencil/core'; /** * @slot - Holds the cla-insignia in place. */ export class Cardfigure { render() { return (h("div", { class: "media-figure" }, h("div", { class: "media-inner" }, h("slot", null)))); } static get is() { return "cla-card-figure"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["cla-card-figure.scss"] }; } static get styleUrls() { return { "$": ["cla-card-figure.css"] }; } }