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.
22 lines (17 loc) • 1.02 kB
JavaScript
import { r as registerInstance, h, H as Host } from './index-b6f64b02.js';
import { g as getIonMode } from './ionic-global-5d790111.js';
const avatarIosCss = ":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:48px;height:48px}";
const avatarMdCss = ":host{border-radius:var(--border-radius);display:block}::slotted(ion-img),::slotted(img){border-radius:var(--border-radius);width:100%;height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden}:host{--border-radius:50%;width:64px;height:64px}";
const Avatar = class {
constructor(hostRef) {
registerInstance(this, hostRef);
}
render() {
return (h(Host, { class: getIonMode(this) }, h("slot", null)));
}
};
Avatar.style = {
/*STENCIL:MODE:ios*/ ios: avatarIosCss,
/*STENCIL:MODE:md*/ md: avatarMdCss
};
export { Avatar as ion_avatar };