import Icon from "@ui5/webcomponents/dist/Icon.js"; import arrowRight from "@ui5/webcomponents-icons/dist/arrow-right.js"; import type SideNavigationSubItem from "./SideNavigationSubItem.js"; export default function SideNavigationSubItemTemplate(this: SideNavigationSubItem) { const EffectiveTag = this._effectiveTag; return (
  • {this.icon && }
    {this.text}
    {this.isExternalLink && }
  • ); }