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.
18 lines (17 loc) • 708 B
JavaScript
import { r as registerInstance, h, H as Host } from './index-b6f64b02.js';
import { g as getIonMode } from './ionic-global-5d790111.js';
import { c as createColorClasses } from './theme-74c22054.js';
var textCss = ":host(.ion-color){color:var(--ion-color-base)}";
var Text = /** @class */ (function () {
function Text(hostRef) {
registerInstance(this, hostRef);
}
Text.prototype.render = function () {
var _a;
var mode = getIonMode(this);
return (h(Host, { class: Object.assign(Object.assign({}, createColorClasses(this.color)), (_a = {}, _a[mode] = true, _a)) }, h("slot", null)));
};
return Text;
}());
Text.style = textCss;
export { Text as ion_text };