()
| 706 | } |
| 707 | |
| 708 | render() { |
| 709 | const mode = getIonMode(this); |
| 710 | return ( |
| 711 | <Host |
| 712 | role="tablist" |
| 713 | onClick={this.onClick} |
| 714 | class={createColorClasses(this.color, { |
| 715 | [mode]: true, |
| 716 | 'in-toolbar': hostContext('ion-toolbar', this.el), |
| 717 | 'in-toolbar-color': hostContext('ion-toolbar[color]', this.el), |
| 718 | 'segment-activated': this.activated, |
| 719 | 'segment-disabled': this.disabled, |
| 720 | 'segment-scrollable': this.scrollable, |
| 721 | })} |
| 722 | > |
| 723 | <slot onSlotchange={this.onSlottedItemsChange}></slot> |
| 724 | </Host> |
| 725 | ); |
| 726 | } |
| 727 | } |
nothing calls this directly
no test coverage detected