@ionic/core
Version:
Base components for Ionic
23 lines (22 loc) • 679 B
JavaScript
/*!
* (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: '7f5fd6c056da2d82feb2c3c33f3e6dec898787f5', class: getIonMode(this) }, h("slot", { key: 'd15fd2b6cdc03777edc1930be95ad838e1b376c8' })));
}
static get is() { return "ion-thumbnail"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() {
return {
"$": ["thumbnail.scss"]
};
}
static get styleUrls() {
return {
"$": ["thumbnail.css"]
};
}
}