UNPKG

@ionic/core

Version:
23 lines (22 loc) 679 B
/*! * (C) Ionic http://ionicframework.com - MIT License */ import { Host, h } from "@stencil/core"; import { getIonMode } from "../../global/ionic-global"; export class Thumbnail { render() { return (h(Host, { key: '70ada828e8cf541ab3b47f94b7e56ce34114ef88', class: getIonMode(this) }, h("slot", { key: 'c43e105669d2bae123619b616f3af8ca2f722d61' }))); } static get is() { return "ion-thumbnail"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["thumbnail.scss"] }; } static get styleUrls() { return { "$": ["thumbnail.css"] }; } }