@huluvu424242/honey-slideshow
Version:
Text to Speech component wich is reading texts from DOM elements.
17 lines (13 loc) • 477 B
JavaScript
import { r as registerInstance, h, H as Host } from './index-a2883912.js';
import { g as getIonMode } from './ionic-global-c170bb31.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 };