import Icon from "@ui5/webcomponents/dist/Icon.js"; import type WizardTab from "./WizardTab.js"; export default function WizardTabTemplate(this: WizardTab) { return (
{this.icon ? ( ) : ( {this.number} )}
{this.hasTexts && (
{this.titleText}
{ this.subtitleText &&
{this.subtitleText}
}
)}
{!this.hideSeparator && (
)}
); }