import { html, nothing } from "lit"; import salutLogo from "../../../../UI/images/Salut_Logotip.svg"; import { PrimariaShellHeader } from "./shell-header"; import { when } from "lit/directives/when.js"; import { translate } from "../../../../locales"; export const template = (props: PrimariaShellHeader) => { const workCenterElements = [{ label: props.professional?.workCenter, value: "1" }]; const roleElements = [{ label: props.professional?.role, value: "1" }]; const specialityElements = [{ label: props.professional?.speciality, value: "1" }]; return html`
${when( props.professional, () => html` `, )}
`; };