Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
aria-selected="false"
tabindex="-1">
<span class="mdc-tab__content">
${
this.icon ? html`
<span class="mdc-tab__icon material-icons">${this.icon}</span>` :
''}
${
this.label ? html`
<span class="mdc-tab__text-label">${this.label}</span>` :
''}
${this.isMinWidthIndicator ? this.renderIndicator() : ''}
</span>
${this.isMinWidthIndicator ? '' : this.renderIndicator()}
<span class="mdc-tab__ripple"></span>
`;
}