import type Tab from "./Tab.js"; import Icon from "./Icon.js"; import ListItemCustom from "./ListItemCustom.js"; export default function TabInOverflowTemplate(this: Tab) { return (
{this.semanticIconName && ( )} {this.icon && ( )} {this.text} {this.additionalText && (<>  ({this.additionalText}) )} {this._designDescription && (
{this._designDescription}
)}
); }