import type CardHeader from "./CardHeader.js"; import { isFirefox } from "@ui5/webcomponents-base/dist/Device.js"; export default function CardHeaderTemplate(this: CardHeader) { return (
{this.hasAvatar &&
}
{this.titleText &&
{this.titleText}
} {this.additionalText &&
{this.additionalText}
}
{this.subtitleText &&
{this.subtitleText}
}
{this.hasAction &&
}
); }