react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
21 lines (16 loc) • 581 B
JavaScript
import { attachShadow, h, Host, proxyCustomElement } from '@stencil/core/internal/client';
import { b as getIonMode } from './ionic-global.js';
const rowCss = ":host{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}";
const Row = class extends HTMLElement {
constructor() {
super();
this.__registerHost();
attachShadow(this);
}
render() {
return (h(Host, { class: getIonMode(this) }, h("slot", null)));
}
static get style() { return rowCss; }
};
const IonRow = /*@__PURE__*/proxyCustomElement(Row, [1,"ion-row"]);
export { IonRow };