UNPKG

@ionic/core

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