()
| 103 | } |
| 104 | |
| 105 | render() { |
| 106 | const position = this.position; |
| 107 | const mode = getIonMode(this); |
| 108 | return ( |
| 109 | <Host |
| 110 | class={createColorClasses(this.color, { |
| 111 | [mode]: true, |
| 112 | 'in-item-color': hostContext('ion-item.ion-color', this.el), |
| 113 | [`label-${position}`]: position !== undefined, |
| 114 | [`label-no-animate`]: this.noAnimate, |
| 115 | 'label-rtl': document.dir === 'rtl', |
| 116 | })} |
| 117 | > |
| 118 | <slot></slot> |
| 119 | </Host> |
| 120 | ); |
| 121 | } |
| 122 | } |
nothing calls this directly
no test coverage detected