()
| 129 | } |
| 130 | |
| 131 | render() { |
| 132 | const mode = getIonMode(this); |
| 133 | return ( |
| 134 | <Host |
| 135 | class={createColorClasses(this.color, { |
| 136 | [mode]: true, |
| 137 | 'card-disabled': this.disabled, |
| 138 | 'ion-activatable': this.isClickable(), |
| 139 | })} |
| 140 | > |
| 141 | {this.renderCard(mode)} |
| 142 | </Host> |
| 143 | ); |
| 144 | } |
| 145 | } |
nothing calls this directly
no test coverage detected