test-isc
Version:
An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.
17 lines (13 loc) • 469 B
JavaScript
import { r as registerInstance, h, H as Host } from './index-b6f64b02.js';
import { g as getIonMode } from './ionic-global-5d790111.js';
const rowCss = ":host{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}";
const Row = class {
constructor(hostRef) {
registerInstance(this, hostRef);
}
render() {
return (h(Host, { class: getIonMode(this) }, h("slot", null)));
}
};
Row.style = rowCss;
export { Row as ion_row };