import Button from "@ui5/webcomponents/dist/Button.js";
import ButtonBadge from "@ui5/webcomponents/dist/ButtonBadge.js";
import ListItemStandard from "@ui5/webcomponents/dist/ListItemStandard.js";
import type ShellBarItem from "./ShellBarItem.js";
export default function ShellBarItemTemplate(this: ShellBarItem) {
if (this.inOverflow) {
return (
{this.text}
);
}
return (
);
}